
7 changed files with 228 additions and 0 deletions
@ -0,0 +1,15 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loanfinotherPolicy; |
||||
|
|
||||
|
import com.yxt.common.core.dto.Dto; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: dimengzhe |
||||
|
* @date: 2023/7/6 |
||||
|
**/ |
||||
|
@Data |
||||
|
public class LoanFinOtherPolicyDto implements Dto { |
||||
|
private static final long serialVersionUID = -1420806288260489371L; |
||||
|
|
||||
|
} |
@ -0,0 +1,78 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loanfinpolicy; |
||||
|
|
||||
|
import com.yxt.common.core.dto.Dto; |
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.math.BigDecimal; |
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: dimengzhe |
||||
|
* @date: 2023/7/6 |
||||
|
**/ |
||||
|
@Data |
||||
|
public class LoanFinPolicyDto implements Dto { |
||||
|
private static final long serialVersionUID = -1420806288260489371L; |
||||
|
private String sid; |
||||
|
@ApiModelProperty("政策名称:组合(资方简称+(担保/非担保)+首付比例+保证金比例+是否打包),如中车(担保)30+0打包") |
||||
|
private String policyName; |
||||
|
@ApiModelProperty("资方sid") |
||||
|
private String bankSid; |
||||
|
@ApiModelProperty("资方名称") |
||||
|
private String bankShortName; |
||||
|
@ApiModelProperty("业务类型key") |
||||
|
private String busTypeKey; |
||||
|
@ApiModelProperty("业务类型value") |
||||
|
private String busTypeValue; |
||||
|
@ApiModelProperty("车辆大类key") |
||||
|
private String vehCategoryKey; |
||||
|
@ApiModelProperty("车辆大类value") |
||||
|
private String vehCategoryValue; |
||||
|
@ApiModelProperty("车辆功能key") |
||||
|
private String vehTypeKey; |
||||
|
@ApiModelProperty("车辆功能value") |
||||
|
private String vehTypeValue; |
||||
|
@ApiModelProperty("是否打包:1打包、2不打包") |
||||
|
private int isPack; |
||||
|
@ApiModelProperty("担保类型key") |
||||
|
private String guaranteeTypeKey; |
||||
|
@ApiModelProperty("担保类型value") |
||||
|
private String guaranteeTypeValue; |
||||
|
/* @ApiModelProperty("是否车损上浮:1是0否。默认为0") |
||||
|
private int isVehFloat;*/ |
||||
|
@ApiModelProperty("单车意外险") |
||||
|
private BigDecimal vehAccidentAmount; |
||||
|
@ApiModelProperty("首付比例(%)") |
||||
|
private String downPayRatio; |
||||
|
/* @ApiModelProperty("最低首付比例(%)") |
||||
|
private String downPayRatioLeast;*/ |
||||
|
@ApiModelProperty("保证金比例(%)") |
||||
|
private String bondRatio; |
||||
|
@ApiModelProperty("期数") |
||||
|
private int period; |
||||
|
@ApiModelProperty("标准年利率(%)") |
||||
|
private String yearRatio; |
||||
|
@ApiModelProperty("服务费类型key") |
||||
|
private String serviceAmountTypeKey; |
||||
|
@ApiModelProperty("服务费类型value") |
||||
|
private String serviceAmountTypeValue; |
||||
|
@ApiModelProperty("服务费") |
||||
|
private BigDecimal serviceAmount; |
||||
|
@ApiModelProperty("保险保证金") |
||||
|
private BigDecimal depositPremium; |
||||
|
@ApiModelProperty("落户保证金") |
||||
|
private BigDecimal depositSettle; |
||||
|
@ApiModelProperty("名义/留购价款") |
||||
|
private BigDecimal nominalPrice; |
||||
|
@ApiModelProperty("有效期至") |
||||
|
private String validDateTo; |
||||
|
@ApiModelProperty("是否有其他融:1有,0无") |
||||
|
private int isOtherProduct; |
||||
|
@ApiModelProperty("适用销售部门sids(逗号分隔)") |
||||
|
private String useDeptSids; |
||||
|
@ApiModelProperty("适用销售部门名称(逗号分隔)") |
||||
|
private String useDeptNames; |
||||
|
@ApiModelProperty("全组织路径") |
||||
|
private String orgPath; |
||||
|
} |
Loading…
Reference in new issue