zyy
2025-12-09 6eef7f43f9ad3d82727fba36f543f268cfb646d2
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
package com.yami.trading.admin.controller.loanOrder;
 
public class LoanConstants {
 
    /**
     * 初始质押率
     */
    public static final double PLEDGE_RATE_INITIAL = 0.75;
    
    /**
     * 提醒质押率
     */
    public static final double PLEDGE_RATE_NOTICE = 0.6;
    
    /**
     * 强平质押率
     */
    public static final double PLEDGE_RATE_CLOSEOUT = 0.83;
    
    /**
     * 质押订单类型 
     * 借款
     */
    public static final int PLEDGE_ORDER_TYPE_LOAN = 1;
    
    /**
     * 补增质押
     */
    public static final int PLEDGE_ORDER_TYPE_REPLENISH = 2;
    
    /**
     * 续借
     */
    public static final int PLEDGE_ORDER_TYPE_REFURBISH = 3;
    
    /**
     * 还款
     */
    public static final int PLEDGE_ORDER_TYPE_REPAY = 4;
    
    /**
     * 强平结清
     */
    public static final int PLEDGE_ORDER_TYPE_CLOSEOUT = 5;
    
    /**
     * 计息中
     */
    public static final int PLEDGE_ORDER_STATE_CALCULATE = 1;
    
    /**
     * 已结清
     */
    public static final int PLEDGE_ORDER_STATE_SETTLE = 2;
    
    /**
     * 强平结清
     */
    public static final int PLEDGE_ORDER_STATE_CLOSEOUT = 3;
    
    /**
     * 已逾期
     */
    public static final int PLEDGE_ORDER_STATE_OVERDUE = 4;
    
    public static final int PLEDGE_TYPE = 1;
    
}