0729接口逻辑修改

This commit is contained in:
2025-07-29 16:18:53 +08:00
parent 0696040874
commit 20f6be7790
17 changed files with 225 additions and 686 deletions

View File

@@ -90,6 +90,7 @@ spring:
# #连接池最大阻塞等待时间(使用负值表示没有限制)
max-wait: -1ms
# token配置
token:
# 令牌自定义标识

View File

@@ -159,10 +159,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
where id = #{id}
</update>
<update id="updateStatusById" parameterType="Long">
update gys_jh
set status = '1'
where id = #{id}
<update id="updateStatusById" parameterType="map">
UPDATE gys_jh
SET status = #{status}
WHERE id = #{id}
</update>
<update id="resetGysJhStatusBySapNos">