|
|
@ -1,5 +1,7 @@ |
|
|
|
package com.yxt.anrui.riskcenter.api.loanfinpolicy; |
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.FieldStrategy; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableField; |
|
|
|
import com.yxt.common.core.domain.BaseEntity; |
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
import lombok.Data; |
|
|
@ -29,8 +31,10 @@ public class LoanFinPolicy extends BaseEntity { |
|
|
|
@ApiModelProperty("车辆大类value") |
|
|
|
private String vehCategoryValue; |
|
|
|
@ApiModelProperty("车辆功能key") |
|
|
|
@TableField(updateStrategy = FieldStrategy.IGNORED) |
|
|
|
private String vehTypeKey; |
|
|
|
@ApiModelProperty("车辆功能value") |
|
|
|
@TableField(updateStrategy = FieldStrategy.IGNORED) |
|
|
|
private String vehTypeValue; |
|
|
|
@ApiModelProperty("是否打包:1打包、2不打包") |
|
|
|
private int isPack; |
|
|
|