yun-zuoyi
王杰 5 years ago
parent 784cd87c71
commit bc9adf8ac0

@ -15,6 +15,37 @@ public class PtlPcnEnumUtil {
*
*/
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum FINISH_PICK_SEND_FLAG {
SECTION(10, "10", "区段"),
AREA(10, "20", "区域");
private int value;
private String code;
private String description;
FINISH_PICK_SEND_FLAG(int value, String code, String description) {
this.value = value;
this.code = code;
this.description = description;
}
public int getValue() {
return value;
}
public String getCode() {
return code;
}
public String getDescription() {
return description;
}
}
/**
*
*/
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum ROUTE_STATUS_ERROR_RECORD_HANDLE_STATUS {
TRUE(10, "已处理"),
FALSE(20, "未处理");

Loading…
Cancel
Save