海外读书

This commit is contained in:
wuchunlei
2024-11-26 15:13:38 +08:00
parent 3fc7a80580
commit a0c42ecea0
37 changed files with 1234 additions and 9 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.BookAbroadComment;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface BookAbroadCommentDao extends MPJBaseMapper<BookAbroadComment> {
}

View File

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

View File

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

View File

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