|
|
@ -99,6 +99,7 @@ |
|
|
|
<result property="status" column="status" jdbcType="BOOLEAN"/> |
|
|
|
<result property="status" column="status" jdbcType="BOOLEAN"/> |
|
|
|
<result property="deptId" column="dept_id" jdbcType="BIGINT"></result> |
|
|
|
<result property="deptId" column="dept_id" jdbcType="BIGINT"></result> |
|
|
|
<result property="groupId" column="group_id" jdbcType="BIGINT"></result> |
|
|
|
<result property="groupId" column="group_id" jdbcType="BIGINT"></result> |
|
|
|
|
|
|
|
<result property="dataScope" column="data_scope" jdbcType="INTEGER"></result> |
|
|
|
<collection property="roles" ofType="string" javaType="java.util.Set"> |
|
|
|
<collection property="roles" ofType="string" javaType="java.util.Set"> |
|
|
|
<result column="code"></result> |
|
|
|
<result column="code"></result> |
|
|
|
</collection> |
|
|
|
</collection> |
|
|
@ -114,7 +115,8 @@ |
|
|
|
t1.STATUS, |
|
|
|
t1.STATUS, |
|
|
|
t1.dept_id , |
|
|
|
t1.dept_id , |
|
|
|
t1.domain_group_id group_id, |
|
|
|
t1.domain_group_id group_id, |
|
|
|
t3.CODE |
|
|
|
t3.CODE, |
|
|
|
|
|
|
|
t3.data_scope |
|
|
|
FROM |
|
|
|
FROM |
|
|
|
sys_user t1 |
|
|
|
sys_user t1 |
|
|
|
LEFT JOIN sys_user_role t2 ON t2.user_id = t1.id |
|
|
|
LEFT JOIN sys_user_role t2 ON t2.user_id = t1.id |
|
|
|