| | |
| | | <result property="companyName" column="company_name" /> |
| | | <result property="remainPeriod" column="remain_period" /> |
| | | <result property="parentName" column="parent_name" /> |
| | | <result property="idCard" column="id_card" /> |
| | | <!-- <result property="idCard" column="id_card" />--> |
| | | <result property="duty" column="duty" /> |
| | | <result property="post" column="post" /> |
| | | <result property="deptId" column="dept_id" /> |
| | | <result property="deptName" column="dept_name" /> |
| | | <result property="entryTime" column="entry_time" /> |
| | | <result property="resignTime" column="resign_time" /> |
| | | <!-- <result property="entryTime" column="entry_time" />--> |
| | | <!-- <result property="resignTime" column="resign_time" />--> |
| | | <result property="personType" column="person_type" /> |
| | | <result property="age" column="age" /> |
| | | <result property="positional" column="positional" /> |
| | | <result property="qualification" column="qualification" /> |
| | | <!-- <result property="positional" column="positional" />--> |
| | | <!-- <result property="qualification" column="qualification" />--> |
| | | <result property="operationCertificate" column="operation_certificate" /> |
| | | <result property="internal" column="internal" /> |
| | | |
| | | </resultMap> |
| | | |
| | |
| | | <result property="roleId" column="role_id" /> |
| | | <result property="roleName" column="role_name" /> |
| | | </collection> |
| | | </resultMap> |
| | | |
| | | |
| | | <resultMap id="SysUserSpVoResult" type="com.gkhy.exam.system.domain.vo.SpSysUser" extends="SysUserVoResult"> |
| | | <result property="idCard" column="id_card" /> |
| | | <result property="entryTime" column="entry_time" /> |
| | | <result property="resignTime" column="resign_time" /> |
| | | <result property="positional" column="positional" /> |
| | | <result property="qualification" column="qualification" /> |
| | | |
| | | </resultMap> |
| | | |
| | | |
| | |
| | | left join sys_role r on r.role_id=ur.role_id |
| | | where ur.user_id = #{userId} |
| | | </select> |
| | | <!-- ,u.id_card,u.entry_time,u.resign_time,u.positional,u.qualification--> |
| | | <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.qualification,u.operation_certificate |
| | | u.dept_id,d.dept_name,u.duty,u.post,u.person_type,u.age,u.operation_certificate,u.internal |
| | | 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="personType != null"> |
| | | AND u.person_type = #{personType} |
| | | </if> |
| | | <if test="qualification != null"> |
| | | AND u.qualification = #{qualification} |
| | | <if test="internal != null"> |
| | | AND u.internal = #{internal} |
| | | </if> |
| | | <!-- <if test="qualification != null">--> |
| | | <!-- AND u.qualification = #{qualification}--> |
| | | <!-- </if>--> |
| | | <if test="userType != null"> |
| | | AND u.user_type = #{userType} |
| | | </if> |
| | |
| | | |
| | | |
| | | |
| | | <select id="userSpList" resultMap="SysUserSpVoResult"> |
| | | 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.person_type,u.age,u.operation_certificate,u.internal, |
| | | ur.id_card,ur.entry_time,ur.resign_time,ur.positional,ur.qualification |
| | | 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 |
| | | left join sys_dept d on d.dept_id=u.dept_id |
| | | left join employee_record ur on ur.user_id=u.id |
| | | |
| | | <where> |
| | | and u.del_flag = 0 |
| | | <if test="username != null and username != ''"> |
| | | AND u.username like concat('%', #{username}, '%') |
| | | </if> |
| | | <if test="name != null and name != ''"> |
| | | AND u.name like concat('%', #{name}, '%') |
| | | </if> |
| | | <if test="status != null and status != ''"> |
| | | AND u.status = #{status} |
| | | </if> |
| | | <if test="personType != null"> |
| | | AND u.person_type = #{personType} |
| | | </if> |
| | | <if test="internal != null"> |
| | | AND u.internal = #{internal} |
| | | </if> |
| | | <!-- <if test="qualification != null">--> |
| | | <!-- AND u.qualification = #{qualification}--> |
| | | <!-- </if>--> |
| | | <if test="userType != null"> |
| | | AND u.user_type = #{userType} |
| | | </if> |
| | | <if test="deptId != null"> |
| | | AND d.dept_id = #{deptId} |
| | | </if> |
| | | <if test="companyId != null "> |
| | | AND u.company_id = #{companyId} |
| | | </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> |
| | | <if test="params.endTime != null and params.endTime != ''"><!-- 结束时间检索 --> |
| | | AND date_format(u.create_time,'%y%m%d') <= date_format(#{params.endTime},'%y%m%d') |
| | | </if> |
| | | <if test="params.userType != null and (params.userType==4 or params.userType==1)"> |
| | | AND u.user_type in (2,3) |
| | | </if> |
| | | <if test="params.userType != null and params.userType==2"> |
| | | AND u.user_type in (3) |
| | | </if> |
| | | <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="getUserByPhone" resultMap="SysUserResult"> |
| | | select id,username,name,password,parent_id,company_id,phone,status,del_flag from sys_user |
| | | where phone=#{phone} and del_flag=0 |
| | | </select> |
| | | |
| | | <select id="getUserById" resultMap="SysUserResult"> |
| | | <!--,u.positional,u.qualification,u.id_card,u.entry_time,u.resign_time,--> |
| | | <select id="getUserById" resultMap="SysUserVoResult"> |
| | | 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,u.qualification,u.operation_certificate |
| | | c.remain_period,su.name as parent_name,u.dept_id,d.dept_name,u.duty,u.post, |
| | | u.person_type,u.age,u.operation_certificate,u.internal |
| | | 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 |