有效-日数据逻辑开发,增加cors跨域过滤器

This commit is contained in:
gaoyutao
2025-08-28 09:40:11 +08:00
parent daa0a8779f
commit 966bd5cbec
19 changed files with 493 additions and 183 deletions
@@ -189,4 +189,21 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</where>
group by switch_sn
</select>
<update id="batchUpdate">
<foreach collection="list" item="item" separator=";">
UPDATE all_interface_name
SET
business_code = #{item.businessCode},
business_name = #{item.businessName},
update_time = now(),
client_id = #{item.clientId},
device_sn = #{item.deviceSn},
node_name = #{item.nodeName},
server_port = #{item.serverPort},
interface_device_type = #{item.interfaceDeviceType},
switch_name = #{item.switchName},
switch_sn = #{item.switchSn}
WHERE id = #{item.id}
</foreach>
</update>
</mapper>