人员离职

new-exam
20918 5 months ago
parent 8ed98775f7
commit 74df40997e

@ -84,6 +84,19 @@ public class TdLeave extends BaseEntity
@Excel(name = "审核意见", readConverterExp = "0=通过,1不通过,2审核中")
private String examinestate;
/**
*
*/
private Long deptId;
public Long getDeptId() {
return deptId;
}
public void setDeptId(Long deptId) {
this.deptId = deptId;
}
public void setId(Long id)
{
this.id = id;
@ -209,6 +222,7 @@ public class TdLeave extends BaseEntity
.append("examinename", getExaminename())
.append("examinedate", getExaminedate())
.append("examinestate", getExaminestate())
.append("deptId", getDeptId())
.toString();
}
}

@ -18,10 +18,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="examinename" column="examinename" />
<result property="examinedate" column="examinedate" />
<result property="examinestate" column="examinestate" />
<result property="deptId" column="dept_id" jdbcType="INTEGER"/>
</resultMap>
<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>
<select id="selectTdLeaveList" parameterType="TdLeave" resultMap="TdLeaveResult">
<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="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>
<!-- 数据范围过滤 -->
${params.dataScope}
</trim>
@ -64,6 +66,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="examinename != null">examinename,</if>
<if test="examinedate != null">examinedate,</if>
<if test="examinestate != null">examinestate,</if>
<if test="deptId != null">dept_id,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<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="examinedate != null">#{examinedate},</if>
<if test="examinestate != null">#{examinestate},</if>
<if test="deptId != null">#{deptId},</if>
</trim>
</insert>
@ -96,6 +100,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="examinename != null">examinename = #{examinename},</if>
<if test="examinedate != null">examinedate = #{examinedate},</if>
<if test="examinestate != null">examinestate = #{examinestate},</if>
<if test="deptId != null">dept_id = #{deptId},</if>
</trim>
where id = #{id}
</update>

Loading…
Cancel
Save