xiangpei
2025-06-04 4e502853119c6d8e7ff686191e19bb0a19a4f875
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?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="cn.lili.modules.lmk.mapper.CustomerTagRefMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="cn.lili.modules.lmk.domain.vo.CustomerTagRefVO">
        <result column="customer_id" property="customerId" />
        <result column="customer_tag_id" property="customerTagId" />
        <result column="create_time" property="createTime" />
        <result column="update_time" property="updateTime" />
    </resultMap>
 
    <select id="getById" resultMap="BaseResultMap">
        SELECT
            LCTR.varchar,
            LCTR.customer_id,
            LCTR.customer_tag_id,
            LCTR.id
        FROM
            lmk_customer_tag_ref LCTR
        WHERE
            LCTR.id = #{id} AND LCTR.delete_flag = 0
    </select>
 
 
    <select id="getPage" resultMap="BaseResultMap">
        SELECT
            LCTR.varchar,
            LCTR.customer_id,
            LCTR.customer_tag_id,
            LCTR.id
        FROM
            lmk_customer_tag_ref LCTR
        WHERE
            LCTR.delete_flag = 0
    </select>
 
</mapper>