档案管理、白名单管理、加密类型管理

This commit is contained in:
liang.chao 2025-09-10 15:25:32 +08:00
parent a7b7582ada
commit b401b2284c
1 changed files with 6 additions and 3 deletions

View File

@ -54,8 +54,11 @@
</if>
</select>
<select id="selectSysEncryType" resultType="java.lang.Integer">
select count(*)
from da_ky_sys_encrypt_set
where encrypt_name = #{encryptName}
SELECT COUNT(*)
FROM da_ky_sys_encrypt_set
WHERE encrypt_name = #{encryptName}
<if test="id != null">
and id != #{id}
</if>
</select>
</mapper>