zxl
4 天以前 8063ee7eee51bfe25a09428e6efc60f828b270c6
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
<?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.ShareMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="cn.lili.modules.lmk.domain.vo.ShareVO">
        <id column="id" property="id"/>
        <result column="share_type" property="shareType" />
        <result column="ref_id" property="refId" />
        <result column="share_user" property="shareUser" />
        <result column="share_time" property="shareTime" />
    </resultMap>
 
 
 
 
 
 
 
    <select id="getById" resultMap="BaseResultMap">
        SELECT
            LS.share_type,
            LS.ref_id,
            LS.share_user,
            LS.share_time,
            LS.id
        FROM
            lmk_share LS
        WHERE
            LS.id = #{id} AND LS.delete_flag = 0
    </select>
 
 
    <select id="getPage" resultMap="BaseResultMap">
        SELECT
            LS.share_type,
            LS.ref_id,
            LS.share_user,
            LS.share_time,
            LS.id
        FROM
            lmk_share LS
        WHERE
            LS.delete_flag = 0
    </select>
 
</mapper>