维修审核状态码与数据字典字段不一致

This commit is contained in:
bonus 2024-12-03 19:17:05 +08:00
parent 48c113ad2c
commit 3fd77df402
1 changed files with 3 additions and 3 deletions

View File

@ -14,9 +14,9 @@ public enum RepairTaskStatusEnum {
TASK_STATUS_PROCESSING(0, "维修管理--进行中"),
TASK_STATUS_COMPLETE(1, "维修管理--已完成"),
TASK_STATUS_REJECT(2, "维修管理--驳回退料"),
TASK_STATUS_TO_EXAM(3, "修饰审核--待审核"),
TASK_STATUS_REVIEW(4, "修饰审核--审核通过"),
TASK_STATUS_NO_REVIEW(5, "修饰审核--审核不通过"),
TASK_STATUS_TO_EXAM(10, "修饰审核--待审核"),
TASK_STATUS_REVIEW(11, "修饰审核--审核通过"),
TASK_STATUS_NO_REVIEW(12, "修饰审核--审核不通过"),
SCRAP_UNDER_REVIEW(6, "报废审核--待审核");
private final Integer status;