1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
| package cn.lili.modules.wallet.entity.enums;
|
| /**
| * 预存款变动日志业务类型
| *
| * @author Chopper
| * @since 2020/8/20 15:39
| */
|
| public enum DepositServiceTypeEnum {
| /**
| * 预存款变动日志业务类型枚举
| */
| WALLET_WITHDRAWAL("余额提现"),
| WALLET_PAY("余额支付"),
| WALLET_REFUND("余额退款"),
| WALLET_RECHARGE("余额充值"),
| WALLET_COMMISSION("佣金提成");
|
| private final String description;
|
| DepositServiceTypeEnum(String description) {
| this.description = description;
| }
|
| public String description() {
| return description;
| }
|
| }
|
|