解决条码长度超长的问题

This commit is contained in:
季圣华
2020-02-18 23:26:44 +08:00
parent ebc637fe72
commit d23f1f4117
6 changed files with 34 additions and 65 deletions

View File

@@ -53,4 +53,16 @@
</foreach>
)
</update>
<update id="batchDeleteMaterialExtendByMIds">
update jsh_material_extend
set delete_Flag='1'
where 1=1
and ifnull(delete_Flag,'0') !='1'
and material_id in (
<foreach collection="ids" item="id" separator=",">
#{id}
</foreach>
)
</update>
</mapper>