ProductPropertyRelationMapper.xml
2.03 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
<?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.ProductPropertyRelationMapper">
    <resultMap id="ProductPropertyRelationDto" type="com.lframework.xingyun.basedata.dto.product.ProductPropertyRelationDto">
        <id column="id" property="id"/>
        <result column="product_id" property="productId"/>
        <result column="property_id" property="propertyId"/>
        <result column="property_item_id" property="propertyItemId"/>
        <result column="property_column_type" property="propertyColumnType"/>
        <result column="property_name" property="propertyName"/>
        <result column="property_text" property="propertyText"/>
    </resultMap>
    <sql id="ProductPropertyRelationDto_sql">
        SELECT
            pp.id,
            pp.product_id,
            p.id AS property_id,
            t.id AS property_item_id,
            p.column_type AS property_column_type,
            p.name AS property_name,
            IF(p.column_type = 3, pp.property_text, t.name) AS property_text
        FROM base_data_product_property_relation AS pp
        INNER JOIN base_data_product_property AS p ON p.id = pp.property_id
        LEFT JOIN base_data_product_property_item AS t ON t.id = pp.property_item_id
    </sql>
    <delete id="setCommonToAppoint">
        DELETE FROM base_data_product_property_relation WHERE property_id = #{propertyId} AND product_id NOT IN (SELECT id from base_data_product WHERE category_id = #{categoryId})
    </delete>
    <select id="getByProductId" resultMap="ProductPropertyRelationDto">
        <include refid="ProductPropertyRelationDto_sql"/>
        WHERE pp.product_id = #{productId}
        ORDER BY p.code, t.code
    </select>
    <select id="getByPropertyId" resultMap="ProductPropertyRelationDto">
        <include refid="ProductPropertyRelationDto_sql"/>
        WHERE pp.property_id = #{propertyId}
        ORDER BY p.code, t.code
    </select>
</mapper>