优化代码

yun-zuoyi
Silliter 7 years ago
parent 7c37ce05a7
commit 06d801be01

@ -1801,5 +1801,34 @@ public class WmsEnumUtil {
}
}
/**
*
*/
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum COMMON_SEQ {
TASK_MV_ORDERNO("TASK_MV_ORDERNO", "作业任务移动单号"),
ROUTING_SEQ("ROUTING_SEQ", "物料路线序号"),
LOCATE_SEQ("LOCATE_SEQ", "库位序号"),
OP_SEQ("OP_SEQ", "作业类型序号"),
TRAN_SEQ("TRAN_SEQ", "交易类型序号"),
STEP_SEQ("STEP_SEQ", "步骤调用序号");
private String code;
private String description;
COMMON_SEQ(String code, String description) {
this.code = code;
this.description = description;
}
public String getCode() {
return code;
}
public String getDescription() {
return description;
}
}
}

Loading…
Cancel
Save