Commit 6d646a07 by ping.wu

Merge branches 'feature/20210831_积分商城2期现金支付_wuping' and 'qa' of…

Merge branches 'feature/20210831_积分商城2期现金支付_wuping' and 'qa' of http://gitlab.freemud.com/order-group-application/order-group into qa
parents 88a6450e 3cff900e
package cn.freemud.enums.integralproduct;
public enum ExchangeTypeEnum {
/**
* 兑换方式(1积分,2现金,3积分+现金)")
*/
TYPE_1(1, "积分"),
TYPE_2(2, "现金"),
TYPE_3(3, "3积分+现金"),
;
private Integer code;
private String desc;
ExchangeTypeEnum(Integer code, String desc) {
this.code = code;
this.desc = desc;
}
public Integer getCode() {
return code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getDesc() {
return desc;
}
public void setDesc(String desc) {
this.desc = desc;
}
}
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