yun-zuoyi
宋军超 5 years ago
commit 464c8b68cc

@ -468,7 +468,7 @@ public class PtlPcnEnumUtil {
}
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum TagType {
public enum TAG_TYPE {
BIN_TAG(10, "库位标签"),
FINALIZER_TAG(20, "完成器标签"),
SCREEN_TAG(30, "标签显示器"),
@ -477,7 +477,7 @@ public class PtlPcnEnumUtil {
private int value;
private String description;
TagType(int value, String description) {
TAG_TYPE(int value, String description) {
this.value = value;
this.description = description;
}
@ -694,7 +694,7 @@ public class PtlPcnEnumUtil {
}
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum StatusType {
public enum STATUS_TYPE {
START(10, "START", "开始状态"),
FINISH(20, "FINISH", "完成状态"),
TERMINATE(30, "TERMINATE", "中断状态");
@ -703,7 +703,7 @@ public class PtlPcnEnumUtil {
private String code;
private String description;
StatusType(int value, String code, String description) {
STATUS_TYPE(int value, String code, String description) {
this.value = value;
this.code = code;
this.description = description;

Loading…
Cancel
Save