|
@@ -182,9 +182,10 @@
|
|
|
|
|
|
<!-- 分页查询 -->
|
|
|
<select id="queryPage" resultMap="EmployeeInfo" parameterType="map">
|
|
|
- SELECT o.name_,group_concat(s.name_),ei.* FROM employee_info ei
|
|
|
+ SELECT o.name_,group_concat(s.name_),u.real_name_,ei.* FROM employee_info ei
|
|
|
left join subject s on find_in_set(s.id_,ei.subject_id_list_)
|
|
|
left join organization o on o.id_ = ei.organ_id_
|
|
|
+ left join sys_user u on u.id_ = ei.operator_id_
|
|
|
<include refid="queryPageMap"/>
|
|
|
GROUP BY ei.id_
|
|
|
ORDER BY ei.update_time_
|