Commit 5841b881 by yuwei

项目初始化

parent 91ca57bb
...@@ -106,10 +106,11 @@ public class DataConstant { ...@@ -106,10 +106,11 @@ public class DataConstant {
* 流程审核状态 * 流程审核状态
*/ */
public enum AuditState{ public enum AuditState{
WAIT("1","待审核"), WAIT("1","待提交"),
AUDIT("2","审核中"), AUDIT("2","审核中"),
PASS("3","审核通过"), AGREE("3","成功"),
NOTPASS("4","审核不通过"); REJECT("4","失败"),
CANCEL("5", "已取消");
AuditState(String key, String val){ AuditState(String key, String val){
this.key = key; this.key = key;
this.val = val; this.val = val;
...@@ -132,7 +133,7 @@ public class DataConstant { ...@@ -132,7 +133,7 @@ public class DataConstant {
*/ */
public enum ApproveState{ public enum ApproveState{
REJECT("0","不通过"), REJECT("0","不通过"),
PASS("1","通过"); AGREE("1","通过");
ApproveState(String key, String val){ ApproveState(String key, String val){
this.key = key; this.key = key;
this.val = val; this.val = val;
......
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 to comment