|
|
@ -12,8 +12,8 @@ |
|
|
|
|
|
|
|
|
|
|
|
<select id="pageByCondition" parameterType="com.daqing.framework.domain.hrms.request.UserLoginLogRequest" resultMap="userLoginLogMap"> |
|
|
|
<select id="pageByCondition" parameterType="com.daqing.framework.domain.hrms.request.UserLoginLogRequest" resultMap="userLoginLogMap"> |
|
|
|
SELECT |
|
|
|
SELECT |
|
|
|
hll.user_id,hll.login_num,hll.create_time,hll.newest_time,he.name as empName,he.job_number, |
|
|
|
hll.user_id,hll.login_num,hll.create_time,hll.newest_time,he.`name` as empName,he.job_number, |
|
|
|
he.phone,hp.name as posName,hd.name as deptName |
|
|
|
he.phone,hp.`name` as posName,GROUP_CONCAT(hd.`name`) as deptName |
|
|
|
FROM hrms_login_log hll |
|
|
|
FROM hrms_login_log hll |
|
|
|
left join hrms_employee he on he.user_id=hll.user_id |
|
|
|
left join hrms_employee he on he.user_id=hll.user_id |
|
|
|
left join hrms_employee_position hep on hep.emp_id=he.id |
|
|
|
left join hrms_employee_position hep on hep.emp_id=he.id |
|
|
@ -21,11 +21,8 @@ |
|
|
|
left join hrms_employee_dept hed on hed.employee_id=he.id |
|
|
|
left join hrms_employee_dept hed on hed.employee_id=he.id |
|
|
|
left join hrms_dept hd on hd.id=hed.dept_id |
|
|
|
left join hrms_dept hd on hd.id=hed.dept_id |
|
|
|
<where> |
|
|
|
<where> |
|
|
|
<if test="loginLog.name != null and loginLog.name != ''"> |
|
|
|
<if test="loginLog.jobNumberOrName != null and loginLog.jobNumberOrName != ''"> |
|
|
|
AND he.`name` LIKE CONCAT('%',#{loginLog.name},'%') |
|
|
|
AND (he.`name` LIKE CONCAT('%',#{loginLog.jobNumberOrName},'%') OR he.job_number LIKE CONCAT('%',#{loginLog.jobNumberOrName},'%')) |
|
|
|
</if> |
|
|
|
|
|
|
|
<if test="loginLog.jobNumber != null and loginLog.jobNumber != ''"> |
|
|
|
|
|
|
|
AND he.job_number = #{loginLog.jobNumber} |
|
|
|
|
|
|
|
</if> |
|
|
|
</if> |
|
|
|
<if test="loginLog.startTime != null and loginLog.startTime != '' "> |
|
|
|
<if test="loginLog.startTime != null and loginLog.startTime != '' "> |
|
|
|
AND hll.create_time >= #{loginLog.startTime} |
|
|
|
AND hll.create_time >= #{loginLog.startTime} |
|
|
@ -34,6 +31,7 @@ |
|
|
|
AND hll.create_time <= #{loginLog.endTime} |
|
|
|
AND hll.create_time <= #{loginLog.endTime} |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
</where> |
|
|
|
</where> |
|
|
|
|
|
|
|
GROUP BY hll.user_id |
|
|
|
</select> |
|
|
|
</select> |
|
|
|
|
|
|
|
|
|
|
|
</mapper> |
|
|
|
</mapper> |