fix: 状态枚举修改

This commit is contained in:
2023-04-03 14:17:58 +08:00
parent be7c9a1565
commit 3ad49d6446

View File

@@ -53,6 +53,11 @@ public enum StatusEnum {
DEVICE_STATUS_RUNING("3","启动",""),
DEVICE_STATUS_WAITING("4","启动",""),
DEVICE_STATUS_ERROR("5","启动",""),
// 点位表点位状态
POINT_STATUS_EMPTY("1", "空位", ""),
POINT_STATUS_FULL("2", "有料", ""),
POINT_STATUS_EMPTY_VEHICLE("3", "空载具", ""),
;
private String code;
private String desc;