Merge remote-tracking branch 'origin/zcc'

This commit is contained in:
wangjinlei
2023-11-24 14:37:57 +08:00
6 changed files with 208 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?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.BookMedicalRecordsDao">
<!-- 可根据自己的需求,是否要使用 -->
<resultMap type="com.peanut.modules.book.entity.BookMedicalRecordsEntity" id="bookMedicalRecordsMap">
<result property="medicalRecordsId" column="medical_records_id"/>
<result property="bookId" column="book_id"/>
<result property="title" column="title"/>
<result property="content" column="content"/>
<result property="sort" column="sort"/>
<result property="createTime" column="create_time"/>
<result property="delFlag" column="del_flag"/>
</resultMap>
</mapper>