ProductVarietyMapper.xml
1.65 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
<?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.ProductVarietyMapper">
<resultMap id="ProductVariety" type="com.lframework.xingyun.basedata.entity.ProductVariety">
<id column="id" property="id"/>
<result column="code" property="code"/>
<result column="name" property="name"/>
<result column="description" property="description"/>
<result column="create_by_id" property="createById"/>
<result column="create_by" property="createBy"/>
<result column="update_by_id" property="updateById"/>
<result column="update_by" property="updateBy"/>
<result column="create_time" property="createTime"/>
<result column="update_time" property="updateTime"/>
</resultMap>
<sql id="ProductVariety_sql">
SELECT
tb.id,
tb.code,
tb.name,
tb.description,
tb.create_by_id,
tb.create_by,
tb.update_by_id,
tb.update_by,
tb.create_time,
tb.update_time
FROM base_data_product_variety AS tb
</sql>
<select id="query" resultMap="ProductVariety">
<include refid="ProductVariety_sql"/>
<where>
<if test="vo.code != null and vo.code != ''">
AND tb.code LIKE CONCAT('%', #{vo.code}, '%')
</if>
<if test="vo.name != null and vo.name != ''">
AND tb.name LIKE CONCAT('%', #{vo.name}, '%')
</if>
</where>
</select>
</mapper>