|  |  |  | 
|---|
|  |  |  | sd.ID AS DEPARTMENT_ID, sd.`NAME` AS DEPARTMENT_NAME,usr.wechat_name,usr.status,usr.OPENID,usr.type, | 
|---|
|  |  |  | create_user.ID CREATE_USER_ID, create_user.`USERNAME` CREATE_USER_NAME, create_user.`REALNAME` CREATE_REAL_NAME, | 
|---|
|  |  |  | update_user.ID UPDETE_USER_ID, update_user.`USERNAME` UPDATE_USER_NAME, create_user.`REALNAME` UPDATE_REAL_NAME, | 
|---|
|  |  |  | sd.name as companyName | 
|---|
|  |  |  | sd.company_name_path as companyName | 
|---|
|  |  |  | FROM `SYSTEM_USER` usr | 
|---|
|  |  |  | LEFT JOIN `SYSTEM_USER` create_user ON create_user.ID = usr.CREATE_USER | 
|---|
|  |  |  | LEFT JOIN `SYSTEM_USER` update_user ON update_user.ID = usr.UPDATE_USER | 
|---|
|  |  |  | 
|---|
|  |  |  | <if test="dto.mobile != null and dto.mobile != ''"> | 
|---|
|  |  |  | AND usr.`MOBILE` LIKE CONCAT('%', #{dto.mobile}, '%') | 
|---|
|  |  |  | </if> | 
|---|
|  |  |  | <if test="dto.companyName != null and dto.companyName != ''"> | 
|---|
|  |  |  | AND sd.`company_name_path` LIKE CONCAT('%', #{dto.companyName}, '%') | 
|---|
|  |  |  | </if> | 
|---|
|  |  |  | <if test="dto.status != null "> | 
|---|
|  |  |  | AND  usr.`status` = #{dto.status} | 
|---|
|  |  |  | </if> | 
|---|
|  |  |  | 
|---|
|  |  |  | <if test="dto.companyType != null "> | 
|---|
|  |  |  | AND  sd.`type` = #{dto.companyType} | 
|---|
|  |  |  | </if> | 
|---|
|  |  |  | <if test="dto.querySpecial != null and dto.querySpecial = 1 "> | 
|---|
|  |  |  | AND find_in_set(#{dto.companySpecialId},REPLACE(sd.company_path,"/",",")) | 
|---|
|  |  |  | </if> | 
|---|
|  |  |  | </where> | 
|---|
|  |  |  | ${orderByClause} | 
|---|
|  |  |  | </select> | 
|---|