mini 查询督导接口

This commit is contained in:
shuo.wang
2025-04-03 14:44:18 +08:00
parent 944695ab31
commit 04dd6675b7
7 changed files with 64 additions and 2 deletions

View File

@@ -169,4 +169,14 @@
from enterprise_user_${enterpriseId}
where user_region_ids like concat('%', #{regionId}, '%') and active = true
</select>
<select id="getAllUser" resultType="com.cool.store.dto.UserDTO">
select
user_id as userId,
name
from enterprise_user_${eid}
where active = true
<if test="keyword!=null and keyword!=''">
and name like concat('%',#{keyword},'%')
</if>
</select>
</mapper>