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; }