|
|
|
@ -27,19 +27,19 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<select id="selectTdLeaveList" parameterType="TdLeave" resultMap="TdLeaveResult">
|
|
|
|
|
<include refid="selectTdLeaveVo"/>
|
|
|
|
|
<trim prefix="where" prefixOverrides="and|or">
|
|
|
|
|
<if test="userId != null and userId != ''"> and u.user_id = #{userId}</if>
|
|
|
|
|
<if test="userName != null and userName != ''"> and u.user_name like concat('%', #{userName}, '%')</if>
|
|
|
|
|
<if test="country != null and country != ''"> and u.country = #{country}</if>
|
|
|
|
|
<if test="areaname != null and areaname != ''"> and u.areaname like concat('%', #{areaname}, '%')</if>
|
|
|
|
|
<if test="leavereason != null and leavereason != ''"> and u.leavereason = #{leavereason}</if>
|
|
|
|
|
<if test="depart != null and depart != ''"> and u.depart = #{depart}</if>
|
|
|
|
|
<if test="leavedate != null "> and u.leavedate = #{leavedate}</if>
|
|
|
|
|
<if test="workstate != null and workstate != ''"> and u.workstate = #{workstate}</if>
|
|
|
|
|
<if test="leavestate != null and leavestate != ''"> and u.leavestate = #{leavestate}</if>
|
|
|
|
|
<if test="examinename != null and examinename != ''"> and u.examinename like concat('%', #{examinename}, '%')</if>
|
|
|
|
|
<if test="examinedate != null "> and u.examinedate = #{examinedate}</if>
|
|
|
|
|
<if test="examinestate != null and examinestate != ''"> and u.examinestate = #{examinestate}</if>
|
|
|
|
|
<if test="deptId != null and deptId != ''"> and dept_id = #{deptId}</if>
|
|
|
|
|
<if test="userId != null and userId != ''"> and d.user_id = #{userId}</if>
|
|
|
|
|
<if test="userName != null and userName != ''"> and d.user_name like concat('%', #{userName}, '%')</if>
|
|
|
|
|
<if test="country != null and country != ''"> and d.country = #{country}</if>
|
|
|
|
|
<if test="areaname != null and areaname != ''"> and d.areaname like concat('%', #{areaname}, '%')</if>
|
|
|
|
|
<if test="leavereason != null and leavereason != ''"> and d.leavereason = #{leavereason}</if>
|
|
|
|
|
<if test="depart != null and depart != ''"> and d.depart = #{depart}</if>
|
|
|
|
|
<if test="leavedate != null "> and d.leavedate = #{leavedate}</if>
|
|
|
|
|
<if test="workstate != null and workstate != ''"> and d.workstate = #{workstate}</if>
|
|
|
|
|
<if test="leavestate != null and leavestate != ''"> and d.leavestate = #{leavestate}</if>
|
|
|
|
|
<if test="examinename != null and examinename != ''"> and d.examinename like concat('%', #{examinename}, '%')</if>
|
|
|
|
|
<if test="examinedate != null "> and d.examinedate = #{examinedate}</if>
|
|
|
|
|
<if test="examinestate != null and examinestate != ''"> and d.examinestate = #{examinestate}</if>
|
|
|
|
|
<if test="deptId != null and deptId != ''"> and d.dept_id = #{deptId}</if>
|
|
|
|
|
<!-- 数据范围过滤 -->
|
|
|
|
|
${params.dataScope}
|
|
|
|
|
</trim>
|
|
|
|
|