订单新增字段,元素实体类修改

This commit is contained in:
潘荣晟
2025-12-25 10:41:39 +08:00
parent cc5ba069b6
commit 80128e275d
8 changed files with 53 additions and 26 deletions

View File

@@ -14,7 +14,11 @@ public enum OrderStatusEnum {
IN_PROGRESS("IN_PROGRESS", "执行中"),
// 关闭状态
CLOSED("CLOSE", "关闭"),
REJECTED("REJECT", "驳回");
REJECTED("REJECT", "驳回"),
FIND("FIND", "ERP提交成功"),
RLBK("RLBK", "ERP提交失败"),
RCVG("RCVG", "ERP执行中"),
WAIT("WAIT", "ERP待上传");
/** 状态编码 */
private final String code;