修复创建模板问题

This commit is contained in:
huangdeliang
2021-03-03 13:46:20 +08:00
parent 297a97db9e
commit 92081f7035
6 changed files with 24 additions and 11 deletions

View File

@ -132,9 +132,9 @@
where id = #{id} and del_flag = 0
</update>
<delete id="deleteSysRecipesPlanById" parameterType="Long">
delete from sys_recipes_plan where id = #{id}
</delete>
<update id="deleteSysRecipesPlanById" parameterType="Long">
update sys_recipes_plan set del_flag = 1 where id = #{id}
</update>
<delete id="deleteSysRecipesPlanByIds" parameterType="String">
delete from sys_recipes_plan where id in