|
@@ -40,6 +40,9 @@
|
|
|
<if test="feedbackContent != null">
|
|
|
feedback_content,
|
|
|
</if>
|
|
|
+ <if test="lastDate != null">
|
|
|
+ last_date,
|
|
|
+ </if>
|
|
|
<if test="status != null">
|
|
|
`status`,
|
|
|
</if>
|
|
@@ -72,6 +75,9 @@
|
|
|
<if test="feedbackContent != null">
|
|
|
#{feedbackContent},
|
|
|
</if>
|
|
|
+ <if test="lastDate != null">
|
|
|
+ #{lastDate},
|
|
|
+ </if>
|
|
|
<if test="status != null">
|
|
|
#{status},
|
|
|
</if>
|
|
@@ -108,6 +114,9 @@
|
|
|
<if test="feedbackContent != null">
|
|
|
feedback_content = #{feedbackContent},
|
|
|
</if>
|
|
|
+ <if test="lastDate != null">
|
|
|
+ last_date = #{lastDate},
|
|
|
+ </if>
|
|
|
<if test="status != null">
|
|
|
`status` = #{status},
|
|
|
</if>
|