master
20918 12 months ago
parent c5caa1515c
commit b77dadeb98

@ -89,19 +89,19 @@ public class TdLeave extends BaseEntity
this.id = id; this.id = id;
} }
public Long getId() public String getUserId() {
{ return userId;
return id;
} }
public void setUserId(String userId)
{ public void setUserId(String userId) {
this.userId = userId; this.userId = userId;
} }
public String getUserId() public Long getId()
{ {
return userId; return id;
} }
public void setCountry(String country) public void setCountry(String country)
{ {
this.country = country; this.country = country;

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

Loading…
Cancel
Save