java bean如下:
import java.util.Date;
public class CmFinancingProductRatePeriod {
private Long id;
private Long productId;
private String financeType;
private Date startDate;
private Date endDate;
private Date interestDate;
private Integer interestDays;
private Boolean isAnnual;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Long getProductId() {
return productId;
}
public void setProductId(Long productId) {
this.productId = productId;
}
public String getFinanceType() {
return financeType;
}
public void setFinanceType(String financeType) {
this.financeType = financeType;
}
public Date getStartDate() {
return startDate;
}
public void setStartDate(Date startDate) {
this.startDate = startDate;
}
public Date ge