|
|
|
@ -21,14 +21,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
<sql id="selectTdLeaveVo">
|
|
|
|
|
select id, userId, userName, country, areaname, leavereason, depart, leavedate, workstate, leavestate, examinename, examinedate, examinestate from td_leave
|
|
|
|
|
select id, user_id, user_name, country, areaname, leavereason, depart, leavedate, workstate, leavestate, examinename, examinedate, examinestate from td_leave
|
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
|
|
<select id="selectTdLeaveList" parameterType="TdLeave" resultMap="TdLeaveResult">
|
|
|
|
|
<include refid="selectTdLeaveVo"/>
|
|
|
|
|
<where>
|
|
|
|
|
<if test="userId != null and userId != ''"> and userId = #{userId}</if>
|
|
|
|
|
<if test="userName != null and userName != ''"> and userName like concat('%', #{userName}, '%')</if>
|
|
|
|
|
<if test="userId != null and userId != ''"> and user_id = #{userId}</if>
|
|
|
|
|
<if test="userName != null and userName != ''"> and user_name like concat('%', #{userName}, '%')</if>
|
|
|
|
|
<if test="country != null and country != ''"> and country = #{country}</if>
|
|
|
|
|
<if test="areaname != null and areaname != ''"> and areaname like concat('%', #{areaname}, '%')</if>
|
|
|
|
|
<if test="leavereason != null and leavereason != ''"> and leavereason = #{leavereason}</if>
|
|
|
|
|