新增会员卡类型,新增单次扣款功能,并且增加了新增单次扣款的费用轨迹

This commit is contained in:
limqhz
2020-06-29 15:03:54 +08:00
parent e6e450bc02
commit 55f492fa42
10 changed files with 126 additions and 38 deletions

View File

@@ -12,7 +12,8 @@ public enum MoneyLogEnum {
REFUND(5, "退款"),
APPLY_MONEY(6, "提现申请"),
APPLY_MONEY_FAIL(7, "提现失败"),
APPLY_MONEY_SUCCESS(8, "提现审核通过");
APPLY_MONEY_SUCCESS(8, "提现审核通过"),
MANUAL_MONEY(9,"单次扣款");
public Integer value;
public String name;