feat():下发钢卷设定值请求到模型程序

This commit is contained in:
Allenxy
2025-01-11 16:31:46 +08:00
parent 252801431e
commit 8c49e04783
20 changed files with 436 additions and 94 deletions

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.fizz.business.mapper.ProMatmapMapper">
<!-- 更新 pro_matmap 表的 matid 字段 -->
<update id="updateMatidByDisplayName">
UPDATE pro_matmap
SET matid = #{matid}
WHERE display_name = 'MILL'
</update>
</mapper>