| | |
| | | |
| | | <select id="getList" resultType="com.zt.core.sys.model.SysUser"> |
| | | select a.* |
| | | ,(select t2.dept_name from SYS_DEPT t2 where t2.dept_id = a.dept_id) deptName |
| | | ,(select t2.name from SYS_DEPT t2 where t2.id = a.dept_id) deptName |
| | | from SYS_USER a |
| | | where a.is_delete = 0 |
| | | <if test="username != null and username.trim() != ''"> |
| | |
| | | , a.username |
| | | , a.real_name |
| | | , a.MOBILE |
| | | , (select t2.dept_name from SYS_DEPT t2 where t2.dept_id = a.dept_id) deptName |
| | | , (select t2.name from SYS_DEPT t2 where t2.id = a.dept_id) deptName |
| | | from SYS_USER a |
| | | where a.del_flag = 0 |
| | | and a.id = #{value} |
| | |
| | | , a.username |
| | | , a.real_name |
| | | , a.MOBILE |
| | | , (select t2.dept_name from SYS_DEPT t2 where t2.dept_id = a.dept_id) deptName |
| | | , (select t2.name from SYS_DEPT t2 where t2.id = a.dept_id) deptName |
| | | , a.password |
| | | from SYS_USER a |
| | | where a.is_delete = 0 |
| | |
| | | and dept_id = #{unitid} |
| | | </if> |
| | | <if test="code != null and code != ''"> |
| | | or dept_id in (select dept_id from SYS_DEPT where dept_code=#{code})) |
| | | or dept_id in (select id from SYS_DEPT where code=#{code})) |
| | | </if> |
| | | <if test="password != null and password != ''"> |
| | | and password = #{password} |
| | |
| | | , a.username |
| | | , a.real_name |
| | | , a.MOBILE |
| | | , (select t2.dept_name from SYS_DEPT t2 where t2.dept_id = a.dept_id) deptName |
| | | , (select t2.name from SYS_DEPT t2 where t2.id = a.dept_id) deptName |
| | | from SYS_USER a |
| | | where a.is_delete = 0 |
| | | # and a.code = #{code} |
| | |
| | | SELECT |
| | | a.real_Name, |
| | | c.name as roleName, |
| | | (select dept_name from SYS_DEPT d where a.DEPT_ID = d.DEPT_ID AND d.del_flag=0 limit 1 ) as deptName |
| | | (select name from SYS_DEPT d where a.DEPT_ID = d.ID AND d.is_delete=0 limit 1 ) as deptName |
| | | FROM |
| | | SYS_USER a, |
| | | SYS_ROLE_USER b, |