diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/TdIndenture.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/TdIndenture.java index 0afa744..483d55e 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/domain/TdIndenture.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/domain/TdIndenture.java @@ -70,6 +70,19 @@ public class TdIndenture extends BaseEntity @Excel(name = "创建人") private String createStaffid; + /** + * 部门 + */ + private Long deptId; + + public Long getDeptId() { + return deptId; + } + + public void setDeptId(Long deptId) { + this.deptId = deptId; + } + /** 创建时间 */ @JsonFormat(pattern = "yyyy-MM-dd") @Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd") @@ -190,6 +203,7 @@ public class TdIndenture extends BaseEntity .append("REMARK", getRemark()) .append("createStaffid", getCreateStaffid()) .append("createDate", getCreateDate()) + .append("deptId", getDeptId()) .toString(); } diff --git a/ruoyi-system/src/main/resources/mapper/system/TdIndentureMapper.xml b/ruoyi-system/src/main/resources/mapper/system/TdIndentureMapper.xml index 05df751..85fca59 100644 --- a/ruoyi-system/src/main/resources/mapper/system/TdIndentureMapper.xml +++ b/ruoyi-system/src/main/resources/mapper/system/TdIndentureMapper.xml @@ -17,10 +17,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" + - 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 @@ -60,6 +62,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" REMARK, CREATE_STAFFID, CREATE_DATE, + dept_id, #{indentureId}, @@ -74,6 +77,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" #{REMARK}, #{createStaffid}, #{createDate}, + #{deptId}, @@ -91,6 +95,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" REMARK = #{remark}, CREATE_STAFFID = #{createStaffid}, CREATE_DATE = #{createDate}, + dept_id = #{deptId}, where INDENTURE_ID = #{indentureId}