|
@@ -3,12 +3,13 @@
|
|
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
|
<mapper namespace="com.yijia.label.mapper.LabelRuleMapper">
|
|
|
-
|
|
|
+
|
|
|
<resultMap type="LabelRule" id="LabelRuleResult">
|
|
|
<result property="id" column="id" />
|
|
|
<result property="labelName" column="label_name" />
|
|
|
<result property="stationId" column="station_id" />
|
|
|
<result property="delFlag" column="del_flag" />
|
|
|
+ <result property="isAddLabel" column="is_add_label" />
|
|
|
<result property="createBy" column="create_by" />
|
|
|
<result property="createTime" column="create_time" />
|
|
|
<result property="updateBy" column="update_by" />
|
|
@@ -16,31 +17,32 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectLabelRuleVo">
|
|
|
- select id, label_name, station_id, del_flag, create_by, create_time, update_by, update_time
|
|
|
+ select id, label_name, station_id, del_flag,is_add_label, create_by, create_time, update_by, update_time
|
|
|
from label_rule
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectLabelRuleList" parameterType="LabelRule" resultMap="LabelRuleResult">
|
|
|
<include refid="selectLabelRuleVo"/>
|
|
|
- <where>
|
|
|
+ <where>
|
|
|
<if test="labelName != null and labelName != ''"> and label_name like concat('%', #{labelName}, '%')</if>
|
|
|
<if test="stationId != null "> and station_id = #{stationId}</if>
|
|
|
<if test="delFlag != null "> and del_flag = #{delFlag}</if>
|
|
|
</where>
|
|
|
order by create_time
|
|
|
</select>
|
|
|
-
|
|
|
+
|
|
|
<select id="selectLabelRuleById" parameterType="Integer" resultMap="LabelRuleResult">
|
|
|
<include refid="selectLabelRuleVo"/>
|
|
|
where id = #{id}
|
|
|
</select>
|
|
|
-
|
|
|
+
|
|
|
<insert id="insertLabelRule" parameterType="LabelRule" useGeneratedKeys="true" keyProperty="id">
|
|
|
insert into label_rule
|
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
<if test="labelName != null">label_name,</if>
|
|
|
<if test="stationId != null">station_id,</if>
|
|
|
<if test="delFlag != null">del_flag,</if>
|
|
|
+ <if test="isAddLabel != null">is_add_label,</if>
|
|
|
<if test="createBy != null">create_by,</if>
|
|
|
<if test="createTime != null">create_time,</if>
|
|
|
<if test="updateBy != null">update_by,</if>
|
|
@@ -50,6 +52,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="labelName != null">#{labelName},</if>
|
|
|
<if test="stationId != null">#{stationId},</if>
|
|
|
<if test="delFlag != null">#{delFlag},</if>
|
|
|
+ <if test="isAddLabel != null">#{isAddLabel},</if>
|
|
|
<if test="createBy != null">#{createBy},</if>
|
|
|
<if test="createTime != null">#{createTime},</if>
|
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
@@ -63,6 +66,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="labelName != null">label_name = #{labelName},</if>
|
|
|
<if test="stationId != null">station_id = #{stationId},</if>
|
|
|
<if test="delFlag != null">del_flag = #{delFlag},</if>
|
|
|
+ <if test="isAddLabel != null">is_add_label = #{isAddLabel},</if>
|
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|
|
@@ -76,10 +80,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</delete>
|
|
|
|
|
|
<delete id="deleteLabelRuleByIds" parameterType="String">
|
|
|
- delete from label_rule where id in
|
|
|
+ delete from label_rule where id in
|
|
|
<foreach item="id" collection="array" open="(" separator="," close=")">
|
|
|
#{id}
|
|
|
</foreach>
|
|
|
</delete>
|
|
|
-
|
|
|
-</mapper>
|
|
|
+
|
|
|
+</mapper>
|