|
|
@@ -0,0 +1,35 @@ |
|
|
|
package cn.com.taiji.core.entity.dict.issue; |
|
|
|
|
|
|
|
public enum OrderPayStatus { |
|
|
|
SUCCESS("支付成功",1){}, |
|
|
|
PAYING("支付中",2){}, |
|
|
|
FAILED("支付失败",3){}, |
|
|
|
UNPAY("未支付",4){}, |
|
|
|
CLOSED("已关闭",5){}, |
|
|
|
CANCELED("已撤销",6){}, |
|
|
|
REFUND("转入退费",7){}, |
|
|
|
; |
|
|
|
private String value; |
|
|
|
private int code; |
|
|
|
|
|
|
|
private OrderPayStatus(String value, int code) { |
|
|
|
this.code=code; |
|
|
|
this.value=value; |
|
|
|
} |
|
|
|
|
|
|
|
public String getValue() { |
|
|
|
return value; |
|
|
|
} |
|
|
|
|
|
|
|
public void setValue(String value) { |
|
|
|
this.value = value; |
|
|
|
} |
|
|
|
|
|
|
|
public int getCode() { |
|
|
|
return code; |
|
|
|
} |
|
|
|
|
|
|
|
public void setCode(int code) { |
|
|
|
this.code = code; |
|
|
|
} |
|
|
|
} |