重庆需求变更代码提交

This commit is contained in:
liang.chao 2024-09-23 17:32:27 +08:00
parent 43f7d26190
commit b4c2506f5a
2 changed files with 6 additions and 6 deletions

View File

@ -24,7 +24,7 @@ public class MaTypeKeeper extends BaseEntity {
//用户 //用户
@Excel(name = "用户") @Excel(name = "用户")
private Long userId; private Integer userId;
//数据所属组织 //数据所属组织
@Excel(name = "数据所属组织") @Excel(name = "数据所属组织")
@ -38,11 +38,11 @@ public class MaTypeKeeper extends BaseEntity {
this.typeId = typeId; this.typeId = typeId;
} }
public Long getUserId() { public Integer getUserId() {
return userId; return userId;
} }
public void setUserId(Long userId) { public void setUserId(Integer userId) {
this.userId = userId; this.userId = userId;
} }

View File

@ -20,7 +20,7 @@ public class MaTypeRepair extends BaseEntity
/** 用户 */ /** 用户 */
@Excel(name = "用户") @Excel(name = "用户")
private Long userId; private Integer userId;
/** 创建时间 */ /** 创建时间 */
@Excel(name = "创建时间") @Excel(name = "创建时间")
@ -39,12 +39,12 @@ public class MaTypeRepair extends BaseEntity
{ {
return typeId; return typeId;
} }
public void setUserId(Long userId) public void setUserId(Integer userId)
{ {
this.userId = userId; this.userId = userId;
} }
public Long getUserId() public Integer getUserId()
{ {
return userId; return userId;
} }