|
|
@ -4,6 +4,8 @@ import com.yxt.common.core.domain.BaseEntity; |
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
|
|
|
|
|
/** |
|
|
|
* @description: 金融产品政策 |
|
|
|
* @author: dimengzhe |
|
|
@ -21,5 +23,53 @@ public class LoanFinPolicy extends BaseEntity { |
|
|
|
@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 filingState; |
|
|
|
@ApiModelProperty("使用状态:1停用 0正常 各分公司设置的状态") |
|
|
|
private int useSate; |
|
|
|
@ApiModelProperty("风控状态:1禁用 0正常 风控中心设置的状态") |
|
|
|
private int riskState; |
|
|
|
} |
|
|
|