@@ -97,7 +97,7 @@ public class IssueProduct extends StringPropertyUUIDEntity { | |||
@Column(name = "PRESTORE_FEE") | |||
private Long prestoreFee;//办理费——预存金费用 | |||
@Column(name = "MONTHLY_RATE") | |||
private Integer monthlyRate;//逾期违约月收比例 | |||
private Double monthlyRate;//逾期违约月收比例 | |||
@Column(name = "NEED_PAY") | |||
@NotNull | |||
private Boolean needPay;//是否需要支付 1是0否 |
@@ -91,7 +91,7 @@ public class ProductAddRequestDto extends AbstractStaffBizRequestDTO { | |||
@ApiModelProperty(value = "欠费月收比例") | |||
@NotNull | |||
@Max(value = 100,message = "比例不能大于100") | |||
private Integer monthlyRate; | |||
private Double monthlyRate; | |||
/** 注销费 信息列表 */ | |||
@ApiModelProperty(value = "注销年限") | |||
private Integer cancelAgeLimit; |