|
|
@ -4,6 +4,8 @@ import com.yxt.common.core.dto.Dto; |
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
|
|
|
|
|
/** |
|
|
|
* @Author dimengzhe |
|
|
|
* @Date 2023/3/22 15:02 |
|
|
@ -14,6 +16,7 @@ public class SolutionsDto implements Dto { |
|
|
|
private static final long serialVersionUID = 3094344495849727373L; |
|
|
|
|
|
|
|
//金融方案主表
|
|
|
|
|
|
|
|
private String saleOrderSid; |
|
|
|
private String type; |
|
|
|
private String typeKey; |
|
|
@ -58,6 +61,7 @@ public class SolutionsDto implements Dto { |
|
|
|
private String loanInterest; |
|
|
|
|
|
|
|
//其他融
|
|
|
|
|
|
|
|
@ApiModelProperty("其它融名称") |
|
|
|
private String otherPolicyName; |
|
|
|
@ApiModelProperty("其它融金额") |
|
|
@ -69,8 +73,22 @@ public class SolutionsDto implements Dto { |
|
|
|
@ApiModelProperty("其它融利息总额") |
|
|
|
private String otherPolicyInterest; |
|
|
|
|
|
|
|
@ApiModelProperty("'融资首付") |
|
|
|
private BigDecimal loanDownPay; |
|
|
|
@ApiModelProperty("总贷款金额") |
|
|
|
private BigDecimal loanAmountTotal; |
|
|
|
@ApiModelProperty("期数") |
|
|
|
private Integer period; |
|
|
|
@ApiModelProperty("月还金额") |
|
|
|
private BigDecimal monthlyRepay; |
|
|
|
@ApiModelProperty("利息总额") |
|
|
|
private BigDecimal interest; |
|
|
|
@ApiModelProperty("预计首期还款日") |
|
|
|
private String returnTime; |
|
|
|
|
|
|
|
|
|
|
|
//金融方案费用明细
|
|
|
|
|
|
|
|
@ApiModelProperty("融资首付") |
|
|
|
private String downPayAmounts; |
|
|
|
@ApiModelProperty("贷款保证金") |
|
|
|