|
|
|
@ -6,7 +6,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
|
|
|
|
|
<resultMap type="TdLeave" id="TdLeaveResult">
|
|
|
|
|
<result property="id" column="id" />
|
|
|
|
|
<result property="username" column="username" />
|
|
|
|
|
<result property="userId" column="userid" />
|
|
|
|
|
<result property="userName" column="username" />
|
|
|
|
|
<result property="country" column="country" />
|
|
|
|
|
<result property="areaname" column="areaname" />
|
|
|
|
|
<result property="leavereason" column="leavereason" />
|
|
|
|
@ -20,13 +21,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
<sql id="selectTdLeaveVo">
|
|
|
|
|
select id, username, country, areaname, leavereason, depart, leavedate, workstate, leavestate, examinename, examinedate, examinestate from td_leave
|
|
|
|
|
select id, username,userid, 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="username != null and username != ''"> and username like concat('%', #{username}, '%')</if>
|
|
|
|
|
<if test="username != null and username != ''"> and username like concat('%', #{userName}, '%')</if>
|
|
|
|
|
<if test="userid != null and userid != ''"> and userid = #{userId}</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>
|
|
|
|
@ -49,6 +51,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
insert into td_leave
|
|
|
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
|
|
<if test="username != null">username,</if>
|
|
|
|
|
<if test="userid != null">userid,</if>
|
|
|
|
|
<if test="country != null">country,</if>
|
|
|
|
|
<if test="areaname != null">areaname,</if>
|
|
|
|
|
<if test="leavereason != null">leavereason,</if>
|
|
|
|
@ -61,7 +64,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="examinestate != null">examinestate,</if>
|
|
|
|
|
</trim>
|
|
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
|
|
<if test="username != null">#{username},</if>
|
|
|
|
|
<if test="username != null">#{userName},</if>
|
|
|
|
|
<if test="userid != null">#{userId},</if>
|
|
|
|
|
<if test="country != null">#{country},</if>
|
|
|
|
|
<if test="areaname != null">#{areaname},</if>
|
|
|
|
|
<if test="leavereason != null">#{leavereason},</if>
|
|
|
|
@ -78,7 +82,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<update id="updateTdLeave" parameterType="TdLeave">
|
|
|
|
|
update td_leave
|
|
|
|
|
<trim prefix="SET" suffixOverrides=",">
|
|
|
|
|
<if test="username != null">username = #{username},</if>
|
|
|
|
|
<if test="username != null">username = #{userName},</if>
|
|
|
|
|
<if test="userid != null">userid = #{userId},</if>
|
|
|
|
|
<if test="country != null">country = #{country},</if>
|
|
|
|
|
<if test="areaname != null">areaname = #{areaname},</if>
|
|
|
|
|
<if test="leavereason != null">leavereason = #{leavereason},</if>
|
|
|
|
|