提交修改
This commit is contained in:
parent
672551b30d
commit
ae4f02a8b7
@ -0,0 +1,36 @@
|
|||||||
|
package com.heyu.api.data.enums;
|
||||||
|
|
||||||
|
/****
|
||||||
|
* apply_for_approval:同意审批,agree_approval: 同意审批 ,reject_approval:拒绝审批
|
||||||
|
*/
|
||||||
|
public enum SettlementStatusEnums {
|
||||||
|
// apply_for_approval:同意审批,agree_approval: 同意审批 ,reject_approval:拒绝审批
|
||||||
|
apply_for_approval("apply_for_approval", "妥投"),
|
||||||
|
agree_approval("agree_approval", "同意审批"),
|
||||||
|
reject_approval("reject_approval", "拒绝审批");
|
||||||
|
|
||||||
|
private String status;
|
||||||
|
|
||||||
|
private String desc;
|
||||||
|
|
||||||
|
SettlementStatusEnums(String status, String desc) {
|
||||||
|
this.status = status;
|
||||||
|
this.desc = desc;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getStatus() {
|
||||||
|
return status;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setStatus(String status) {
|
||||||
|
this.status = status;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDesc() {
|
||||||
|
return desc;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDesc(String desc) {
|
||||||
|
this.desc = desc;
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user