fix case bug
This commit is contained in:
parent
0b7b690e8e
commit
421da5f235
|
|
@ -49,7 +49,7 @@
|
||||||
<if test="createTime != null">CREATE_TIME,</if>
|
<if test="createTime != null">CREATE_TIME,</if>
|
||||||
<if test="updateBy != null">UPDATE_BY,</if>
|
<if test="updateBy != null">UPDATE_BY,</if>
|
||||||
<if test="updateTime != null">UPDATE_TIME,</if>
|
<if test="updateTime != null">UPDATE_TIME,</if>
|
||||||
<if test="REMARK != null">REMARK,</if>
|
<if test="remark != null">REMARK,</if>
|
||||||
</trim>
|
</trim>
|
||||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||||
<if test="name != null">#{name},</if>
|
<if test="name != null">#{name},</if>
|
||||||
|
|
@ -59,7 +59,7 @@
|
||||||
<if test="createTime != null">#{createTime},</if>
|
<if test="createTime != null">#{createTime},</if>
|
||||||
<if test="updateBy != null">#{updateBy},</if>
|
<if test="updateBy != null">#{updateBy},</if>
|
||||||
<if test="updateTime != null">#{updateTime},</if>
|
<if test="updateTime != null">#{updateTime},</if>
|
||||||
<if test="REMARK != null">#{remark},</if>
|
<if test="remark != null">#{remark},</if>
|
||||||
</trim>
|
</trim>
|
||||||
</insert>
|
</insert>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue