|
|
@ -18,10 +18,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
<result property="examinename" column="examinename" />
|
|
|
|
<result property="examinename" column="examinename" />
|
|
|
|
<result property="examinedate" column="examinedate" />
|
|
|
|
<result property="examinedate" column="examinedate" />
|
|
|
|
<result property="examinestate" column="examinestate" />
|
|
|
|
<result property="examinestate" column="examinestate" />
|
|
|
|
|
|
|
|
<result property="deptId" column="dept_id" jdbcType="INTEGER"/>
|
|
|
|
</resultMap>
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
|
|
<sql id="selectTdLeaveVo">
|
|
|
|
<sql id="selectTdLeaveVo">
|
|
|
|
select u.id, u.user_id, u.user_name, u.country, u.areaname, u.leavereason, u.depart, u.leavedate, u.workstate, u.leavestate, u.examinename, u.examinedate, u.examinestate from td_leave u
|
|
|
|
select u.id, u.user_id, u.user_name, u.country, u.areaname, u.leavereason, u.depart, u.leavedate, u.workstate, u.leavestate, u.examinename, u.examinedate, u.examinestate,dept_id from td_leave u
|
|
|
|
</sql>
|
|
|
|
</sql>
|
|
|
|
<select id="selectTdLeaveList" parameterType="TdLeave" resultMap="TdLeaveResult">
|
|
|
|
<select id="selectTdLeaveList" parameterType="TdLeave" resultMap="TdLeaveResult">
|
|
|
|
<include refid="selectTdLeaveVo"/>
|
|
|
|
<include refid="selectTdLeaveVo"/>
|
|
|
@ -38,6 +39,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
<if test="examinename != null and examinename != ''"> and u.examinename like concat('%', #{examinename}, '%')</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="examinedate != null "> and u.examinedate = #{examinedate}</if>
|
|
|
|
<if test="examinestate != null and examinestate != ''"> and u.examinestate = #{examinestate}</if>
|
|
|
|
<if test="examinestate != null and examinestate != ''"> and u.examinestate = #{examinestate}</if>
|
|
|
|
|
|
|
|
<if test="deptId != null and deptId != ''"> and dept_id = #{deptId}</if>
|
|
|
|
<!-- 数据范围过滤 -->
|
|
|
|
<!-- 数据范围过滤 -->
|
|
|
|
${params.dataScope}
|
|
|
|
${params.dataScope}
|
|
|
|
</trim>
|
|
|
|
</trim>
|
|
|
@ -64,6 +66,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
<if test="examinename != null">examinename,</if>
|
|
|
|
<if test="examinename != null">examinename,</if>
|
|
|
|
<if test="examinedate != null">examinedate,</if>
|
|
|
|
<if test="examinedate != null">examinedate,</if>
|
|
|
|
<if test="examinestate != null">examinestate,</if>
|
|
|
|
<if test="examinestate != null">examinestate,</if>
|
|
|
|
|
|
|
|
<if test="deptId != null">dept_id,</if>
|
|
|
|
</trim>
|
|
|
|
</trim>
|
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
|
<if test="userId != null">#{userId},</if>
|
|
|
|
<if test="userId != null">#{userId},</if>
|
|
|
@ -78,6 +81,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
<if test="examinename != null">#{examinename},</if>
|
|
|
|
<if test="examinename != null">#{examinename},</if>
|
|
|
|
<if test="examinedate != null">#{examinedate},</if>
|
|
|
|
<if test="examinedate != null">#{examinedate},</if>
|
|
|
|
<if test="examinestate != null">#{examinestate},</if>
|
|
|
|
<if test="examinestate != null">#{examinestate},</if>
|
|
|
|
|
|
|
|
<if test="deptId != null">#{deptId},</if>
|
|
|
|
</trim>
|
|
|
|
</trim>
|
|
|
|
</insert>
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
|
@ -96,6 +100,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
<if test="examinename != null">examinename = #{examinename},</if>
|
|
|
|
<if test="examinename != null">examinename = #{examinename},</if>
|
|
|
|
<if test="examinedate != null">examinedate = #{examinedate},</if>
|
|
|
|
<if test="examinedate != null">examinedate = #{examinedate},</if>
|
|
|
|
<if test="examinestate != null">examinestate = #{examinestate},</if>
|
|
|
|
<if test="examinestate != null">examinestate = #{examinestate},</if>
|
|
|
|
|
|
|
|
<if test="deptId != null">dept_id = #{deptId},</if>
|
|
|
|
</trim>
|
|
|
|
</trim>
|
|
|
|
where id = #{id}
|
|
|
|
where id = #{id}
|
|
|
|
</update>
|
|
|
|
</update>
|
|
|
|