| | |
| | | <if test="item.content != null and item.content != '' "> |
| | | content, |
| | | </if> |
| | | <if test="item.reply != null and item.reply != '' "> |
| | | reply, |
| | | </if> |
| | | creation_time |
| | | </trim> |
| | | values |
| | |
| | | </if> |
| | | <if test="item.content != null and item.content != '' "> |
| | | #{item.content}, |
| | | </if> |
| | | <if test="item.reply != null and item.reply != '' "> |
| | | #{item.reply}, |
| | | </if> |
| | | sysdate() |
| | | </trim> |
| | |
| | | <if test="item.content != null and item.content != '' "> |
| | | content=#{item.content}, |
| | | </if> |
| | | <if test="item.reply != null and item.reply != '' "> |
| | | reply=#{item.reply}, |
| | | </if> |
| | | update_time=sysdate() |
| | | </set> |
| | | where id = #{item.id} |