--图书分类

This commit is contained in:
yc13649764453
2023-09-15 09:08:38 +08:00
parent 4deeb605f8
commit 8d3c128f3b
24 changed files with 862 additions and 473 deletions

View File

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.peanut.modules.book.dao.BookClockinCommentDao">
<!-- 可根据自己的需求,是否要使用 -->
<resultMap type="com.peanut.modules.book.entity.BookCategoryEntity" id="categoryEntity">
<result property="id" column="id"/>
<result property="name" column="name"/>
<result property="bookCid" column="book_cid"/>
<result property="bookLevel" column="book_level"/>
<result property="delFlag" column="del_flag"/>
<result property="sort" column="sort"/>
<result property="bookCount" column="book_count"/>
</resultMap>
</mapper>