| | |
| | | <result property="personType" column="person_type" /> |
| | | <result property="age" column="age" /> |
| | | <result property="positional" column="positional" /> |
| | | <result property="qualification" column="qualification" /> |
| | | <result property="operationCertificate" column="operation_certificate" /> |
| | | |
| | | </resultMap> |
| | | |
| | |
| | | <select id="userList" resultMap="SysUserVoResult"> |
| | | select u.id,u.username,u.name,u.user_type,u.phone,u.parent_id,u.company_id,u.sex,u.status,u.del_flag,u.version, |
| | | u.login_ip,u.login_date,u.create_by,u.create_time,u.remark,c.name as company_name,su.name as parent_name, |
| | | u.dept_id,d.dept_name,u.duty,u.post,u.id_card,u.entry_time,u.resign_time,u.person_type,u.age,u.positional |
| | | u.dept_id,d.dept_name,u.duty,u.post,u.id_card,u.entry_time,u.resign_time,u.person_type,u.age,u.positional,u.qualification,u.operation_certificate |
| | | from sys_user u |
| | | left join sys_company c on c.id=u.company_id |
| | | left join sys_user su on su.id=u.parent_id and u.parent_id!=0 |
| | |
| | | <if test="status != null and status != ''"> |
| | | AND u.status = #{status} |
| | | </if> |
| | | <if test="personType != null"> |
| | | AND u.person_type = #{personType} |
| | | </if> |
| | | <if test="qualification != null"> |
| | | AND u.qualification = #{qualification} |
| | | </if> |
| | | <if test="userType != null"> |
| | | AND u.user_type = #{userType} |
| | | </if> |
| | |
| | | </if> |
| | | <if test="phone != null and phone != ''"> |
| | | AND u.phone like concat('%', #{phone}, '%') |
| | | </if> |
| | | <if test="post != null and post != ''"> |
| | | AND u.post like concat('%', #{post}, '%') |
| | | </if> |
| | | <if test="params.beginTime != null and params.beginTime != ''"><!-- 开始时间检索 --> |
| | | AND date_format(u.create_time,'%y%m%d') >= date_format(#{params.beginTime},'%y%m%d') |
| | |
| | | <if test="params.userType != null and params.userType==0"> |
| | | AND u.user_type in (1,2,3,4) |
| | | </if> |
| | | |
| | | </where> |
| | | order by u.id desc |
| | | </select> |
| | |
| | | |
| | | <select id="getUserById" resultMap="SysUserResult"> |
| | | select u.id,u.username,u.user_type,u.name,u.phone,u.parent_id,u.company_id,u.status,u.sex,u.del_flag,u.version,c.name as company_name, |
| | | c.remain_period,su.name as parent_name,u.dept_id,d.dept_name,u.duty,u.post,u.id_card,u.entry_time,u.resign_time,u.person_type,u.age,u.positional |
| | | c.remain_period,su.name as parent_name,u.dept_id,d.dept_name,u.duty,u.post,u.id_card,u.entry_time,u.resign_time, |
| | | u.person_type,u.age,u.positional,u.qualification,u.operation_certificate |
| | | from sys_user u |
| | | left join sys_company c on c.id=u.company_id |
| | | left join sys_user su on su.id=u.parent_id and u.parent_id!=0 |
| | |
| | | </if> |
| | | </select> |
| | | |
| | | |
| | | |
| | | |
| | | </mapper> |