工艺路线接口

master
Yangwl 9 months ago
parent 3b8717318b
commit 2503a3233e

@ -85,6 +85,7 @@
<trim prefix="(" suffix=")" suffixOverrides=","> <trim prefix="(" suffix=")" suffixOverrides=",">
<if test="routeId != null and routeId != ''">route_id,</if> <if test="routeId != null and routeId != ''">route_id,</if>
<if test="routeCode != null and routeCode != ''">route_code,</if> <if test="routeCode != null and routeCode != ''">route_code,</if>
<if test="productCode != null and productCode != ''">product_code,</if>
<if test="routeName != null and routeName != ''">route_name,</if> <if test="routeName != null and routeName != ''">route_name,</if>
<if test="routeDesc != null">route_desc,</if> <if test="routeDesc != null">route_desc,</if>
<if test="enableFlag != null and enableFlag != ''">enable_flag,</if> <if test="enableFlag != null and enableFlag != ''">enable_flag,</if>
@ -112,6 +113,7 @@
<trim prefix="values (" suffix=")" suffixOverrides=","> <trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="routeId != null and routeId != ''">#{routeId},</if> <if test="routeId != null and routeId != ''">#{routeId},</if>
<if test="routeCode != null and routeCode != ''">#{routeCode},</if> <if test="routeCode != null and routeCode != ''">#{routeCode},</if>
<if test="productCode != null and productCode != ''">#{productCode},</if>
<if test="routeName != null and routeName != ''">#{routeName},</if> <if test="routeName != null and routeName != ''">#{routeName},</if>
<if test="routeDesc != null">#{routeDesc},</if> <if test="routeDesc != null">#{routeDesc},</if>
<if test="enableFlag != null and enableFlag != ''">#{enableFlag},</if> <if test="enableFlag != null and enableFlag != ''">#{enableFlag},</if>
@ -143,6 +145,7 @@
<trim prefix="SET" suffixOverrides=","> <trim prefix="SET" suffixOverrides=",">
<if test="routeCode != null and routeCode != ''">route_code = #{routeCode},</if> <if test="routeCode != null and routeCode != ''">route_code = #{routeCode},</if>
<if test="routeName != null and routeName != ''">route_name = #{routeName},</if> <if test="routeName != null and routeName != ''">route_name = #{routeName},</if>
<if test="productCode != null and productCode != ''">product_code = #{productCode},</if>
<if test="routeDesc != null">route_desc = #{routeDesc},</if> <if test="routeDesc != null">route_desc = #{routeDesc},</if>
<if test="enableFlag != null and enableFlag != ''">enable_flag = #{enableFlag},</if> <if test="enableFlag != null and enableFlag != ''">enable_flag = #{enableFlag},</if>
<if test="remark != null">remark = #{remark},</if> <if test="remark != null">remark = #{remark},</if>

Loading…
Cancel
Save