peng
昨天 9478f791a1f3a6fa6eb4246c894cfbcd758fef56
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
39
40
41
42
43
44
45
46
47
48
49
50
<?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.ShareActionMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="cn.lili.modules.lmk.domain.vo.ShareActionVO">
        <id column="id" property="id"/>
        <result column="user_id" property="userId" />
        <result column="share_option" property="shareOption" />
        <result column="page_code" property="pageCode" />
        <result column="page_type" property="pageType" />
        <result column="pid" property="pid" />
    </resultMap>
 
 
 
 
 
 
 
    <select id="getById" resultMap="BaseResultMap">
        SELECT
            LSA.user_id,
            LSA.share_option,
            LSA.page_code,
            LSA.page_type,
            LSA.pid,
            LSA.id
        FROM
            lmk_share_action LSA
        WHERE
            LSA.id = #{id} AND LSA.delete_flag = 0
    </select>
 
 
    <select id="getPage" resultMap="BaseResultMap">
        SELECT
            LSA.user_id,
            LSA.share_option,
            LSA.page_code,
            LSA.page_type,
            LSA.pid,
            LSA.id
        FROM
            lmk_share_action LSA
        WHERE
            LSA.delete_flag = 0
    </select>
 
</mapper>