zhanghua
2025-06-11 2ca169c85f61256fb5185c078dba1bfef2be5066
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package cn.lili.modules.wallet.entity.enums;
 
/**
 * 提现申请状态枚举类
 *
 * @author pikachu
 * @since 2020-11-06
 */
public enum WithdrawStatusEnum {
    /**
     * 申请中
     */
    APPLY("申请中"),
    /**
     * 审核成功即提现成功
     */
    VIA_AUDITING("审核通过"),
    /**
     * 分销提现
     * 审核成功即提现成功
     */
    D_VIA_AUDITING("分销提现审核通过"),
    /**
     * 审核未通过
     */
    FAIL_AUDITING("审核未通过"),
    /**
     * 分销提现
     * 审核未通过
     */
    D_FAIL_AUDITING("分销提现审核未通过"),
    /**
     * 提现成功
     */
    SUCCESS("提现成功"),
    /**
     * 提现失败
     */
    ERROR("提现失败");
 
    private String description;
 
    public String description() {
        return description;
    }
 
    WithdrawStatusEnum(String description) {
        this.description = description;
    }
 
}