Cui Zhi Feng
2024-10-09 ac41edc045e8945f01e8460b6712579b710aadef
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?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.mzl.flower.mapper.comment.FlowerCommentMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.mzl.flower.entity.FlowerCommentDO">
        <id column="id" property="id" />
        <result column="deleted" property="deleted" />
        <result column="create_by" property="createBy" />
        <result column="create_time" property="createTime" />
        <result column="update_by" property="updateBy" />
        <result column="update_time" property="updateTime" />
        <result column="order_id" property="orderId" />
        <result column="customer_id" property="customerId" />
        <result column="flower_id" property="flowerId" />
        <result column="flower_cover" property="flowerCover" />
        <result column="comment_grade" property="commentGrade" />
        <result column="comment" property="comment" />
        <result column="comment_images" property="commentImages" />
        <result column="anonymity_falg" property="anonymityFalg" />
    </resultMap>
 
</mapper>