From b4c2506f5a3b237c0147655973602d28d0e261a5 Mon Sep 17 00:00:00 2001 From: "liang.chao" <1360241448@qq.com> Date: Mon, 23 Sep 2024 17:32:27 +0800 Subject: [PATCH] =?UTF-8?q?=E9=87=8D=E5=BA=86=E9=9C=80=E6=B1=82=E5=8F=98?= =?UTF-8?q?=E6=9B=B4=E4=BB=A3=E7=A0=81=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/bonus/sgzb/base/domain/MaTypeKeeper.java | 6 +++--- .../main/java/com/bonus/sgzb/base/domain/MaTypeRepair.java | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/sgzb-modules/sgzb-material/src/main/java/com/bonus/sgzb/base/domain/MaTypeKeeper.java b/sgzb-modules/sgzb-material/src/main/java/com/bonus/sgzb/base/domain/MaTypeKeeper.java index 155bce4..ad20b12 100644 --- a/sgzb-modules/sgzb-material/src/main/java/com/bonus/sgzb/base/domain/MaTypeKeeper.java +++ b/sgzb-modules/sgzb-material/src/main/java/com/bonus/sgzb/base/domain/MaTypeKeeper.java @@ -24,7 +24,7 @@ public class MaTypeKeeper extends BaseEntity { //用户 @Excel(name = "用户") - private Long userId; + private Integer userId; //数据所属组织 @Excel(name = "数据所属组织") @@ -38,11 +38,11 @@ public class MaTypeKeeper extends BaseEntity { this.typeId = typeId; } - public Long getUserId() { + public Integer getUserId() { return userId; } - public void setUserId(Long userId) { + public void setUserId(Integer userId) { this.userId = userId; } diff --git a/sgzb-modules/sgzb-material/src/main/java/com/bonus/sgzb/base/domain/MaTypeRepair.java b/sgzb-modules/sgzb-material/src/main/java/com/bonus/sgzb/base/domain/MaTypeRepair.java index c8919e0..eee0d2f 100644 --- a/sgzb-modules/sgzb-material/src/main/java/com/bonus/sgzb/base/domain/MaTypeRepair.java +++ b/sgzb-modules/sgzb-material/src/main/java/com/bonus/sgzb/base/domain/MaTypeRepair.java @@ -20,7 +20,7 @@ public class MaTypeRepair extends BaseEntity /** 用户 */ @Excel(name = "用户") - private Long userId; + private Integer userId; /** 创建时间 */ @Excel(name = "创建时间") @@ -39,12 +39,12 @@ public class MaTypeRepair extends BaseEntity { return typeId; } - public void setUserId(Long userId) + public void setUserId(Integer userId) { this.userId = userId; } - public Long getUserId() + public Integer getUserId() { return userId; }