72 lines
1.6 KiB
Java
72 lines
1.6 KiB
Java
package com.tenwa.reckon.bean;
|
|
|
|
|
|
/**
|
|
* 分期 测算规则
|
|
* @author tenwapc
|
|
*
|
|
*/
|
|
public class SubsectionBean {
|
|
|
|
public int startList; //开始期次
|
|
public int endList; //结束期次
|
|
public String settleMethod; //测算方法
|
|
public String incomeNumberYear; //还款间隔
|
|
public int incomeIntervalMonth; //还款间隔(月)
|
|
public String appointType; //指定类型
|
|
public String appointMoney; //指定金额
|
|
public String appointRate; //指定利率
|
|
public int getStartList() {
|
|
return startList;
|
|
}
|
|
public void setStartList(int startList) {
|
|
this.startList = startList;
|
|
}
|
|
public int getEndList() {
|
|
return endList;
|
|
}
|
|
public void setEndList(int endList) {
|
|
this.endList = endList;
|
|
}
|
|
public String getSettleMethod() {
|
|
return settleMethod;
|
|
}
|
|
public void setSettleMethod(String settleMethod) {
|
|
this.settleMethod = settleMethod;
|
|
}
|
|
public String getIncomeNumberYear() {
|
|
return incomeNumberYear;
|
|
}
|
|
public void setIncomeNumberYear(String incomeNumberYear) {
|
|
this.incomeNumberYear = incomeNumberYear;
|
|
}
|
|
public int getIncomeIntervalMonth() {
|
|
return incomeIntervalMonth;
|
|
}
|
|
public void setIncomeIntervalMonth(int incomeIntervalMonth) {
|
|
this.incomeIntervalMonth = incomeIntervalMonth;
|
|
}
|
|
public String getAppointType() {
|
|
return appointType;
|
|
}
|
|
public void setAppointType(String appointType) {
|
|
this.appointType = appointType;
|
|
}
|
|
public String getAppointMoney() {
|
|
return appointMoney;
|
|
}
|
|
public void setAppointMoney(String appointMoney) {
|
|
this.appointMoney = appointMoney;
|
|
}
|
|
public String getAppointRate() {
|
|
return appointRate;
|
|
}
|
|
public void setAppointRate(String appointRate) {
|
|
this.appointRate = appointRate;
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|