用户资产多角色

master
chaiyapeng 2024-09-03 16:03:49 +08:00
parent 565294bd7b
commit 63b35bc2b0
1 changed files with 7 additions and 1 deletions

View File

@ -30,7 +30,13 @@
</select>
<select id="findApiList" resultType="com.muyu.domain.Connector">
select *from connector where connector_status=1
select *from connector
<where>
connector_status=1
<if test="connectorName!=null and connectorName!='' ">
and connector_name like concat('%',#{connectorName},'%')
</if>
</where>
</select>
<select id="userId" resultType="com.muyu.domain.SysUser">
select *from sys_user where user_id=#{userId}