peternameyakj
2025-04-29 acf1c75a32aa05f34d9d60b6ae3f3e052b532e9f
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
package project.monitor.pledgegalaxy;
 
/**
 * 质押2.0状态常量类
 *
 */
public class PledgeGalaxyStatusConstants {
 
    /**
     * 质押提交申请
     */
    public static final int PLEDGE_APPLY = 0;
    
    /**
     * 质押成功
     */
    public static final int PLEDGE_SUCCESS = 1;
    
    /**
     * 质押失败
     */
    public static final int PLEDGE_FAIL = 2;
    
    /**
     * 赎回申请
     */
    public static final int RETURN_APPLY = 3;
    
    /**
     * 赎回成功
     */
    public static final int RETURN_SUCCESS = 4;
    
    /**
     * 赎回失败
     */
    public static final int RETURN_FAIL = 5;
    
    /**
     * 已冻结
     */
    public static final int PLEDGE_FROZEN = 6;
    
    // ================================================
    
    /**
     * 0 待领取 1 待审核 2 已通过 3 不通过 4 已过期
     */
    public static final int PROFIT_PENDING = 0;
    
    /**
     *  1 待审核 
     */
    public static final int PROFIT_AUTID = 1;
    
    /**
     *  2 已通过 
     */
    public static final int PROFIT_PASSED = 2;
    
    /**
     *  3 不通过
     */
    public static final int PROFIT_FAIL = 3;
    
    /**
     * 4 已过期
     */
    public static final int PROFIT_EXPIRED = 4;
    
    // ================================================
    
    /**
     * 静态收益
     */
    public static final int STATIC_INCOME = 1;
    
    /**
     * 助力收益
     */
    public static final int DYNAMIC_INCOME = 2;
    
    /**
     * 团队收益
     */
    public static final int TEAM_INCOME = 3;
    
    // =================================================
    /**
     * 用户质押
     */
    public static final int USER_PLEDGE = 0;
    
    /**
     * 假分质押
     */
    public static final int FAKE_PLEDGE = 1;
    
    /**
     * 体验金质押
     */
    public static final int EXPERIENCE_GOLD_PLEDGE = 2;
    
}