优化更新功能

This commit is contained in:
qitz
2023-12-09 15:14:38 +08:00
parent 67b3566eb8
commit 23f4c31338
2 changed files with 13 additions and 0 deletions
@@ -32,4 +32,6 @@ public interface ColumnValueMapper {
*/
void batchUpdate(@Param("list") List<ColumnValue> list);
int updateColumnValue(ColumnValue columnValue);
}
@@ -29,6 +29,17 @@
where id=#{item.id};
</foreach>
</update>
<update id="updateColumnValue" parameterType="ColumnValue">
update column_value
<set>
<if test="value != null and value != ''">
`VALUE` = #{value},
</if>
</set>
where id=#{id}
</update>
<select id="listByCaseId" resultMap="BaseResultMap">
select * from column_value where case_id=#{caseId}
</select>