From 3f5ebb4d1fe680cb44c3f2bb6bbf5a3baf012680 Mon Sep 17 00:00:00 2001 From: 20918 <2091823062@qq.com> Date: Fri, 1 Nov 2024 08:57:46 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=B4=E4=BF=AE=E5=95=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/ruoyi/system/domain/TdIndenture.java | 14 ++++++++++++++ .../resources/mapper/system/TdIndentureMapper.xml | 7 ++++++- 2 files changed, 20 insertions(+), 1 deletion(-) 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}