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; | |||||
} | |||||
} |