debug。卡券订单分成
This commit is contained in:
parent
52751f506e
commit
4f91afef2e
|
@ -11,7 +11,8 @@ public enum BalanceLogBstType {
|
|||
|
||||
ORDER("ORDER", "订单"),
|
||||
WITHDRAW("WITHDRAW", "提现"),
|
||||
SMS("SMS", "短信");
|
||||
SMS("SMS", "短信"),
|
||||
VIP_ORDER("VIP_ORDER", "卡券订单");
|
||||
|
||||
private final String code;
|
||||
private final String name;
|
||||
|
@ -19,6 +20,8 @@ public enum BalanceLogBstType {
|
|||
public static BalanceLogBstType parseByBonusBstType(String bstType) {
|
||||
if (BonusBstType.ORDER.getType().equals(bstType)) {
|
||||
return ORDER;
|
||||
} else if (BonusBstType.VIP_ORDER.getType().equals(bstType)) {
|
||||
return VIP_ORDER;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user