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