Przeglądaj źródła

发行接口

master
qiubh 2 miesięcy temu
rodzic
commit
2801d6c54f

+ 33
- 0
gly-base-core/src/main/java/cn/com/taiji/core/entity/dict/issue/RefundBusiness.java Wyświetl plik

@@ -0,0 +1,33 @@
package cn.com.taiji.core.entity.dict.issue;

/**
* @desc : 退费类型类型
*/
public enum RefundBusiness {

ORDER_REFUND("发行订单退费", 1),
VALUE_TO_ACCOUNT("储值卡转记账卡订单退费", 2),
REPAIROBU("增补OBU订单退费", 3),
CHANGECARD("卡签更换", 4),
CHANGEOBU("储值卡注销退费", 5),
CHANGEALL("储值卡半条流水退费", 6),
;


private final String value;

private final int code;

RefundBusiness(String value, int code) {
this.value = value;
this.code = code;
}

public int getCode() {
return this.code;
}

public String getValue() {
return this.value;
}
}

Ładowanie…
Anuluj
Zapisz