|
@@ -54,7 +54,7 @@ public class ResourceBusiness extends Entity<Long> {
|
|
|
@Length(max = 4, message = "是否终结序(1-是0-否)长度不能超过4")
|
|
|
@TableField(value = "is_final", condition = LIKE)
|
|
|
@Excel(name = "是否终结序(1-是0-否)")
|
|
|
- private Boolean isFinal;
|
|
|
+ private String isFinal;
|
|
|
|
|
|
/**
|
|
|
* 备注
|
|
@@ -79,7 +79,7 @@ public class ResourceBusiness extends Entity<Long> {
|
|
|
private String productionResourceName;
|
|
|
|
|
|
@Builder
|
|
|
- public ResourceBusiness(Long id, LocalDateTime createTime, Long createUser, LocalDateTime updateTime, Long updateUser, String name, String status, boolean isFinal, String remark, Long resourceCodeId,Long resourceId) {
|
|
|
+ public ResourceBusiness(Long id, LocalDateTime createTime, Long createUser, LocalDateTime updateTime, Long updateUser, String name, String status, String isFinal, String remark, Long resourceCodeId,Long resourceId) {
|
|
|
super(id, createTime, createUser, updateTime, updateUser);
|
|
|
this.name = name;
|
|
|
this.status = status;
|