Rectify return type

pull/8523/head
Qiuyi LI 2025-05-16 17:08:41 +02:00
parent 8346fdd3b2
commit bb39f40606
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@
FROM client
WHERE internal_code = #{code}
</select>
<select id="getActiveClientIdByCode" parameterType="java.lang.String" resultType="org.jeecg.modules.business.entity.Client">
<select id="getActiveClientIdByCode" parameterType="java.lang.String" resultType="java.lang.String">
SELECT id
FROM client
WHERE internal_code = #{code} AND active = 1