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;
|
}
|
}
|