解决计量单位更新的bug

This commit is contained in:
季圣华
2021-12-01 23:53:45 +08:00
parent 5df31c1e45
commit 95561f8b86
3 changed files with 20 additions and 0 deletions

View File

@@ -35,4 +35,14 @@
</foreach>
)
</update>
<update id="updateRatioTwoById">
update jsh_unit
set ratio_two=null
where id=#{id}
</update>
<update id="updateRatioThreeById">
update jsh_unit
set ratio_three=null
where id=#{id}
</update>
</mapper>