1
zj
2024-06-13 4680141b47cf95358b7edfb4000564ba0e973612
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
package com.yami.trading.bean.loanOrder;
 
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Getter;
import lombok.Setter;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * 借币订单实体
 */
@TableName("t_loan_relation_order")
public class LoanRelationOrder implements Serializable {
 
    private static final long serialVersionUID = -1309085104344395345L;
 
    /**
     * 主键
     */
 
    @Getter
    private String uuid;
    
    /**
     * 借款关联订单ID
     */
    private String loan_relation_order_id;
    
    /**
     * 用户ID
     */
    @Getter
    @Setter
    private String party_id;
    
    /**
     * 订单类型: 1 借款;2新增质押;3续借;4还款;5强平结清
     */
    @Getter
    @Setter
    private int order_type;
    
    /**
     * 借款金额
     */
    @Getter
    @Setter
    private double loan_amount;
    
    /**
     * 贷款币种
     */
    @Getter
    @Setter
    private String loan_currency;
    
    /**
     * 质押的币种
     */
    @Getter
    @Setter
    private String pledge_currency;
    
    /**
     * 质押金额
     */
    @Getter
    @Setter
    private double pledge_amount;
    
    /**
     * 质押类型:1币质押
     */
    @Getter
    @Setter
    private int pledge_type;
    
    /**
     * 创建时间
     */
    @Getter
    @Setter
    private Date create_time;
 
    public void setUuid(String uuid) {
        this.uuid = uuid;
    }
 
    public String getLoanRelationOrderId() {
        return loan_relation_order_id;
    }
 
    public void setLoanRelationOrderId(String loanRelationOrderId) {
        this.loan_relation_order_id = loanRelationOrderId;
    }
 
    public int getPledge_type() {
        return pledge_type;
    }
 
    public void setPledgeType(int pledgeType) {
        this.pledge_type = pledgeType;
    }
 
//    public String getPartyId() {
//        return party_id;
//    }
 
    public void setPartyId(String partyId) {
        this.party_id = partyId;
    }
 
//    public int getOrderType() {
//        return order_type;
//    }
 
//    public void setOrder_type(int orderType) {
//        this.order_type = orderType;
//    }
 
    public double getLoan_amount() {
        return loan_amount;
    }
 
    public void setLoanAmount(double loanAmount) {
        this.loan_amount = loanAmount;
    }
 
    public String getLoan_currency() {
        return loan_currency;
    }
 
    public void setLoanCurrency(String loanCurrency) {
        this.loan_currency = loanCurrency;
    }
    
    public String getPledgeCurrency() {
        return pledge_currency;
    }
 
    public void setPledgeCurrency(String pledgeCurrency) {
        this.pledge_currency = pledgeCurrency;
    }
 
    public double getPledge_amount() {
        return pledge_amount;
    }
 
    public void setPledge_amount(double pledgeAmount) {
        this.pledge_amount = pledgeAmount;
    }
 
    public Date getCreate_time() {
        return create_time;
    }
 
    public void setCreate_time(Date create_time) {
        this.create_time = create_time;
    }
    
}