课程、章节评论

This commit is contained in:
wuchunlei
2024-06-12 16:38:34 +08:00
parent 501db3f59d
commit 85901e1996
9 changed files with 230 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
package com.peanut.modules.common.dao;
import com.github.yulichang.base.MPJBaseMapper;
import com.peanut.modules.common.entity.CourseGuestbook;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface CourseGuestbookDao extends MPJBaseMapper<CourseGuestbook> {
}