|
@@ -294,6 +294,7 @@
|
|
|
<if test="data.autoGroup != null">auto_group,</if>
|
|
<if test="data.autoGroup != null">auto_group,</if>
|
|
|
<if test="data.autoGroupLevel != null">auto_group_level,</if>
|
|
<if test="data.autoGroupLevel != null">auto_group_level,</if>
|
|
|
<if test="data.groupName != null">group_name,</if>
|
|
<if test="data.groupName != null">group_name,</if>
|
|
|
|
|
+ <if test="data.isFixed != null">is_fixed,</if>
|
|
|
</trim>
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
<if test="data.name != null">#{data.name},</if>
|
|
<if test="data.name != null">#{data.name},</if>
|
|
@@ -326,6 +327,7 @@
|
|
|
<if test="data.autoGroup != null">#{data.autoGroup},</if>
|
|
<if test="data.autoGroup != null">#{data.autoGroup},</if>
|
|
|
<if test="data.autoGroupLevel != null">#{data.autoGroupLevel},</if>
|
|
<if test="data.autoGroupLevel != null">#{data.autoGroupLevel},</if>
|
|
|
<if test="data.groupName != null">#{data.groupName},</if>
|
|
<if test="data.groupName != null">#{data.groupName},</if>
|
|
|
|
|
+ <if test="data.isFixed != null">#{data.isFixed},</if>
|
|
|
</trim>
|
|
</trim>
|
|
|
</insert>
|
|
</insert>
|
|
|
|
|
|
|
@@ -505,6 +507,7 @@
|
|
|
<if test="data.autoGroup != null">auto_group = #{data.autoGroup},</if>
|
|
<if test="data.autoGroup != null">auto_group = #{data.autoGroup},</if>
|
|
|
<if test="data.autoGroupLevel != null">auto_group_level = #{data.autoGroupLevel},</if>
|
|
<if test="data.autoGroupLevel != null">auto_group_level = #{data.autoGroupLevel},</if>
|
|
|
<if test="data.groupName != null">group_name = #{data.groupName},</if>
|
|
<if test="data.groupName != null">group_name = #{data.groupName},</if>
|
|
|
|
|
+ <if test="data.isFixed != null">is_fixed = #{data.isFixed},</if>
|
|
|
</trim>
|
|
</trim>
|
|
|
where id = #{data.id}
|
|
where id = #{data.id}
|
|
|
</update>
|
|
</update>
|