peternameyakj
2025-01-06 4c82733d79b03ee1d5304398b0598d826e6fd0e9
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
package project.monitor.loan;
 
import java.io.Serializable;
import java.util.Date;
 
import javax.persistence.Column;
import javax.persistence.Table;
 
import kernel.bo.EntityObject;
 
/**
 * @author JORGE
 * @description 借贷申请单实体类
 */
@Table(name="T_SIMPLE_LOAN_ORDER")
public class SimpleLoanOrder extends EntityObject{
    /**
     * 序列化ID
     */
    private static final long serialVersionUID = -1590224831484585648L;
    
    /**
     * 用户ID
     */
    @Column(name="PARTY_ID")
    private String partyId;
    
    /**
     * 借贷币种
     */
    @Column(name="SYMBOL")
    private String symbol;
    
    /**
     * 借贷额度
     */
    @Column(name="QUOTA")
    private Integer quota;
    
    /**
     * 审核状态
     * 1:未审,2:通过,3:驳回
     */
    @Column(name="STATE")
    private Integer state;
    
    /**
     * 借贷期限(天)
     */
    @Column(name="TERM")
    private Integer term;
    
    /**
     * 申请时间(创建时间)
     */
    @Column(name="CREATE_TIME")
    private Date createTime;
    
    /**
     * 还款周期(天)
     */
    @Column(name="REPAY_CYCLE")
    private Integer repayCycle;
    
    /**
     * 日利率(浮点数,百分比)
     */
    @Column(name="DAILY_RATE")
    private Double dailyRate;
    
    /**
     * 还款方式
     */
    @Column(name="REPAYMENT")
    private Integer repayment;
    
    /**
     * 放款机构
     */
    @Column(name="LENDING_INSTITUTION")
    private Integer lendingInstitution;
    
    /**
     * 房屋照片集
     * exam:123.png,456.png,789.png
     */
    private String houseImgs;
    
    /**
     * 收入证明扫描件
     * exam:abc.png
     */
    private String incomeImg;
    
    public SimpleLoanOrder() {}
    
    public SimpleLoanOrder(Integer quota,String symbol,Serializable id) {
        this.symbol=symbol;
        this.quota=quota;
        this.setId(id);
    }
    
    public SimpleLoanOrder(String partyId,Integer quota,String symbol) {
        this.partyId=partyId;
        this.symbol=symbol;
        this.quota=quota;
    }
 
    public String getPartyId() {
        return partyId;
    }
 
    public void setPartyId(String partyId) {
        this.partyId = partyId;
    }
 
    public String getSymbol() {
        return symbol;
    }
 
    public void setSymbol(String symbol) {
        this.symbol = symbol;
    }
 
    public Integer getQuota() {
        return quota;
    }
 
    public void setQuota(Integer quota) {
        this.quota = quota;
    }
 
    public Integer getState() {
        return state;
    }
 
    public void setState(Integer state) {
        this.state = state;
    }
 
    public Integer getTerm() {
        return term;
    }
 
    public void setTerm(Integer term) {
        this.term = term;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Integer getRepayCycle() {
        return repayCycle;
    }
 
    public void setRepayCycle(Integer repayCycle) {
        this.repayCycle = repayCycle;
    }
 
    public Double getDailyRate() {
        return dailyRate;
    }
 
    public void setDailyRate(Double dailyRate) {
        this.dailyRate = dailyRate;
    }
 
    public Integer getRepayment() {
        return repayment;
    }
 
    public void setRepayment(Integer repayment) {
        this.repayment = repayment;
    }
 
    public Integer getLendingInstitution() {
        return lendingInstitution;
    }
 
    public void setLendingInstitution(Integer lendingInstitution) {
        this.lendingInstitution = lendingInstitution;
    }
 
    public String getHouseImgs() {
        return houseImgs;
    }
 
    public void setHouseImgs(String houseImgs) {
        this.houseImgs = houseImgs;
    }
 
    public String getIncomeImg() {
        return incomeImg;
    }
 
    public void setIncomeImg(String incomeImg) {
        this.incomeImg = incomeImg;
    }
}