peng
6 天以前 28e85b011d662ef7b42216993f1f91d79b4d93c4
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.KitchenTagMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="cn.lili.modules.lmk.domain.vo.KitchenTagVO">
        <id column="id" property="id"/>
        <result column="tag_name" property="tagName" />
        <result column="sort" property="sort" />
        <result column="enable" property="enable" />
    </resultMap>
 
 
 
 
 
 
 
    <select id="getById" resultMap="BaseResultMap">
        SELECT
            LKT.tag_name,
            LKT.sort,
            LKT.id
        FROM
            lmk_kitchen_tag LKT
        WHERE
            LKT.id = #{id} AND LKT.delete_flag = 0
    </select>
 
 
    <select id="getPage" resultMap="BaseResultMap">
        SELECT
            LKT.tag_name,
            LKT.sort,
            LKT.id,
            LKT.enable
        FROM
            lmk_kitchen_tag LKT
        WHERE
            LKT.delete_flag = 0
        <if test="query.enable != '' and query.enable !=null">
          and  LKT.enable = #{query.enable}
        </if>
        <if test="query.tagName != '' and query.tagName !=null">
            and  LKT.tag_name like concat('%',#{query.tagName},'%')
        </if>
        order by LKT.create_time desc
    </select>
 
</mapper>