status枚举修改

This commit is contained in:
kuang.yifei@iwhalecloud.com 2022-06-22 18:01:52 +08:00
parent bca177aa8e
commit f7cfaec3a3
1 changed files with 3 additions and 3 deletions

View File

@ -17,9 +17,9 @@ public enum OrderStatus implements IEnumType {
PLAIN(1, "待排期"),
GOING(2, "待上门"),
SERVER(3, "服务中"),
FINISH_CHECK(6, "待确认"),
FINISH(4, "已完成"),
CANCEL(5, "已取消");
FINISH_CHECK(4, "待确认"),
FINISH(5, "已完成"),
CANCEL(6, "已取消");
private final int code;
private final String desc;