new-exam
20918 5 months ago
parent 835e13d88c
commit 3f5ebb4d1f

@ -70,6 +70,19 @@ public class TdIndenture extends BaseEntity
@Excel(name = "创建人") @Excel(name = "创建人")
private String createStaffid; private String createStaffid;
/**
*
*/
private Long deptId;
public Long getDeptId() {
return deptId;
}
public void setDeptId(Long deptId) {
this.deptId = deptId;
}
/** 创建时间 */ /** 创建时间 */
@JsonFormat(pattern = "yyyy-MM-dd") @JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd") @Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd")
@ -190,6 +203,7 @@ public class TdIndenture extends BaseEntity
.append("REMARK", getRemark()) .append("REMARK", getRemark())
.append("createStaffid", getCreateStaffid()) .append("createStaffid", getCreateStaffid())
.append("createDate", getCreateDate()) .append("createDate", getCreateDate())
.append("deptId", getDeptId())
.toString(); .toString();
} }

@ -17,10 +17,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="remark" column="REMARK" /> <result property="remark" column="REMARK" />
<result property="createStaffid" column="CREATE_STAFFID" /> <result property="createStaffid" column="CREATE_STAFFID" />
<result property="createDate" column="CREATE_DATE" /> <result property="createDate" column="CREATE_DATE" />
<result property="deptId" column="dept_id" jdbcType="INTEGER"/>
</resultMap> </resultMap>
<sql id="selectTdIndentureVo"> <sql id="selectTdIndentureVo">
select INDENTURE_ID, INDENTURE_NAME, INDENTURE_ADDRESS, INDENTURE_PHONE, INDENTURE_MOBILE, INDENTURE_LINKMAN, LINKMAN_PHONE, LINKMAN_MOBILE, INDENTURE_STATE, REMARK, CREATE_STAFFID, CREATE_DATE from td_indenture select INDENTURE_ID, INDENTURE_NAME, INDENTURE_ADDRESS, INDENTURE_PHONE, INDENTURE_MOBILE, INDENTURE_LINKMAN, LINKMAN_PHONE, LINKMAN_MOBILE, INDENTURE_STATE, REMARK, CREATE_STAFFID, CREATE_DATE ,dept_id from td_indenture
</sql> </sql>
<select id="selectTdIndentureList" parameterType="TdIndenture" resultMap="TdIndentureResult"> <select id="selectTdIndentureList" parameterType="TdIndenture" resultMap="TdIndentureResult">
@ -37,6 +38,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="remark != null and REMARK != ''"> and REMARK = #{remark}</if> <if test="remark != null and REMARK != ''"> and REMARK = #{remark}</if>
<if test="createStaffid != null and createStaffid != ''"> and CREATE_STAFFID = #{createStaffid}</if> <if test="createStaffid != null and createStaffid != ''"> and CREATE_STAFFID = #{createStaffid}</if>
<if test="createDate != null "> and CREATE_DATE = #{createDate}</if> <if test="createDate != null "> and CREATE_DATE = #{createDate}</if>
<if test="deptId != null "> and dept_id = #{deptId}</if>
</where> </where>
</select> </select>
@ -60,6 +62,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="remark != null">REMARK,</if> <if test="remark != null">REMARK,</if>
<if test="createStaffid != null">CREATE_STAFFID,</if> <if test="createStaffid != null">CREATE_STAFFID,</if>
<if test="createDate != null">CREATE_DATE,</if> <if test="createDate != null">CREATE_DATE,</if>
<if test="deptId != null">dept_id,</if>
</trim> </trim>
<trim prefix="values (" suffix=")" suffixOverrides=","> <trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="indentureId != null">#{indentureId},</if> <if test="indentureId != null">#{indentureId},</if>
@ -74,6 +77,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="remark != null">#{REMARK},</if> <if test="remark != null">#{REMARK},</if>
<if test="createStaffid != null">#{createStaffid},</if> <if test="createStaffid != null">#{createStaffid},</if>
<if test="createDate != null">#{createDate},</if> <if test="createDate != null">#{createDate},</if>
<if test="deptId != null">#{deptId},</if>
</trim> </trim>
</insert> </insert>
@ -91,6 +95,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="remark != null">REMARK = #{remark},</if> <if test="remark != null">REMARK = #{remark},</if>
<if test="createStaffid != null">CREATE_STAFFID = #{createStaffid},</if> <if test="createStaffid != null">CREATE_STAFFID = #{createStaffid},</if>
<if test="createDate != null">CREATE_DATE = #{createDate},</if> <if test="createDate != null">CREATE_DATE = #{createDate},</if>
<if test="deptId != null">dept_id = #{deptId},</if>
</trim> </trim>
where INDENTURE_ID = #{indentureId} where INDENTURE_ID = #{indentureId}
</update> </update>

Loading…
Cancel
Save