18 lines
390 B
Java
18 lines
390 B
Java
package com.peanut.modules.common.dao;
|
|
|
|
import com.github.yulichang.base.MPJBaseMapper;
|
|
import com.peanut.modules.common.entity.BookChapterContentEntity;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
/**
|
|
*
|
|
*
|
|
* @author yl
|
|
* @email yl328572838@163.com
|
|
* @date 2022-08-16 14:32:06
|
|
*/
|
|
@Mapper
|
|
public interface BookChapterContentDao extends MPJBaseMapper<BookChapterContentEntity> {
|
|
|
|
}
|