fix:task的评审状态修改
This commit is contained in:
@@ -5,15 +5,15 @@ import lombok.Getter;
|
||||
@Getter
|
||||
public enum ApprovalStatusEnum {
|
||||
|
||||
ING("进行中", "1"),
|
||||
PASSED("评审通过", "2"),
|
||||
REJECTED("评审驳回", "3");
|
||||
ING("进行中", 1),
|
||||
PASSED("评审通过", 2),
|
||||
REJECTED("评审驳回", 3);
|
||||
|
||||
private final String name;
|
||||
|
||||
private final String code;
|
||||
private final Integer code;
|
||||
|
||||
ApprovalStatusEnum(String name, String code) {
|
||||
ApprovalStatusEnum(String name, Integer code) {
|
||||
this.name = name;
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
@@ -105,7 +105,7 @@ public class SimulationTask implements Serializable {
|
||||
private String analyseSoftware;
|
||||
|
||||
@TableField("approval_status")
|
||||
private String approvalStatus;
|
||||
private Integer approvalStatus;
|
||||
|
||||
@TableField("comfirm_status")
|
||||
private String comfirmStatus;
|
||||
|
||||
@@ -88,7 +88,7 @@ public class SpdmNewTaskVo extends BaseEntity {
|
||||
|
||||
private String analyseTarget;
|
||||
private String analyseSoftware;
|
||||
private String approvalStatus;
|
||||
private Integer approvalStatus;
|
||||
private String comfirmStatus;
|
||||
private String description;
|
||||
/**
|
||||
|
||||
@@ -95,7 +95,7 @@ public class SpdmTaskDetailVo extends BaseEntity {
|
||||
/**
|
||||
* 审批状态
|
||||
*/
|
||||
private String approvalStatus;
|
||||
private Integer approvalStatus;
|
||||
|
||||
/**
|
||||
* 确认状态
|
||||
|
||||
@@ -88,7 +88,7 @@ public class SpdmTaskVo extends BaseEntity {
|
||||
|
||||
private String analyseTarget;
|
||||
private String analyseSoftware;
|
||||
private String approvalStatus;
|
||||
private Integer approvalStatus;
|
||||
private String comfirmStatus;
|
||||
private String description;
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user