|
|
@ -112,6 +112,22 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
<select id="selectEmp" resultType="java.util.HashMap"> |
|
|
|
select id from dc_employees where organization_id=#{organizationId} and name=#{name} |
|
|
|
</select> |
|
|
|
<select id="selectDcShiftsListExport" resultType="com.zc.business.domain.DcShifts"> |
|
|
|
select shifts.id, shifts.employees_id,shifts.station, |
|
|
|
employees.name,employees.contact_number,post.post_name,organization.organization_name, |
|
|
|
shifts.date, shifts.start_time, shifts.end_time,shifts.scheduling, |
|
|
|
shifts.remark, shifts.create_time, shifts.update_time from dc_shifts as shifts |
|
|
|
left join dc_employees as employees on employees.id=shifts.employees_id |
|
|
|
left join sys_post as post on employees.post_id=post.post_id |
|
|
|
left join dc_organization as organization on organization.id=shifts.station |
|
|
|
<where> |
|
|
|
<if test="station != null "> and shifts.station = #{station}</if> |
|
|
|
<if test="employeesId != null "> and shifts.employees_id = #{employeesId}</if> |
|
|
|
<if test="date != null "> and shifts.date = #{date}</if> |
|
|
|
<if test="name != null and name != ''"> and CONCAT(employees.name,employees.contact_number) like concat('%', #{name}, '%')</if> |
|
|
|
</where> |
|
|
|
order by shifts.date desc |
|
|
|
</select> |
|
|
|
|
|
|
|
|
|
|
|
<insert id="insertDcShifts" parameterType="DcShifts" useGeneratedKeys="true" keyProperty="id"> |
|
|
|