Commit d50de8ea by Huang Linyu

业务提交数据列表查询及处理流程优化

parent 63af8edb
......@@ -11,10 +11,13 @@ import java.util.Map;
public enum ActiveCustomerAuditStatusEnum {
SUMMITTED(1, "未审批"),
CONFIRM(2, "财务确认"),
ADDED(4, "已录入公社"),
UNCONFIRM(-2, "未确认"),
CONFIRM(2, "已确认"),
UNADDED(-4, "未录公社"),
ADDED(4, "已录公社"),
COMPLETED(6, "审批完成"),
REJECT(99, "驳回");
REJECT(128, "驳回");
private int value;
private String msg;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment