ProductPropertyItemMapper.xml
2.09 KB
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
51
52
53
54
55
56
<?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.lframework.xingyun.basedata.mappers.ProductPropertyItemMapper">
    <resultMap id="ProductPropertyItem"
               type="com.lframework.xingyun.basedata.entity.ProductPropertyItem">
        <id column="id" property="id"/>
        <result column="code" property="code"/>
        <result column="name" property="name"/>
        <result column="property_id" property="propertyId"/>
        <result column="available" property="available"/>
        <result column="description" property="description"/>
        <result column="create_by" property="createBy"/>
        <result column="create_time" property="createTime"/>
        <result column="update_by" property="updateBy"/>
        <result column="update_time" property="updateTime"/>
    </resultMap>
    <sql id="ProductPropertyItemDto_sql">
        SELECT
            id,
            code,
            name,
            property_id,
            available,
            description,
            create_by,
            create_time,
            update_by,
            update_time
        FROM base_data_product_property_item
    </sql>
    <select id="query" resultMap="ProductPropertyItem">
        <include refid="ProductPropertyItemDto_sql"/>
        <where>
            AND property_id = #{vo.propertyId}
            <if test="vo != null">
                <if test="vo.code != null and vo.code != ''">
                    AND code = #{vo.code}
                </if>
                <if test="vo.name != null and vo.name != ''">
                    AND name LIKE CONCAT('%', #{vo.name}, '%')
                </if>
                <if test="vo.available != null">
                    AND available = #{vo.available}
                </if>
            </if>
        </where>
        ORDER BY code
    </select>
    <select id="getByPropertyId" resultMap="ProductPropertyItem">
        <include refid="ProductPropertyItemDto_sql"/>
        WHERE property_id = #{propertyId}
        ORDER BY code
    </select>
</mapper>