package com.ruoyi.system.domain.dto;
|
|
import lombok.Data;
|
import java.math.BigDecimal;
|
import java.util.List;
|
|
/**
|
* 保险产品更新DTO
|
*/
|
@Data
|
public class InsuranceProductUpdateDTO {
|
|
// 产品ID
|
private Integer id;
|
|
// 产品名称
|
private String productName;
|
|
// 产品代码
|
private String productCode;
|
|
// 保障详情
|
private String description;
|
|
// 保额
|
private BigDecimal coverageAmount;
|
|
// 保费
|
private BigDecimal premium;
|
|
// 保险期限
|
private Integer term;
|
|
// 产品状态产品状态(ACTIVE 上架,INACTIVE 下架)
|
private String status;
|
|
// 医院数量
|
private Integer hospitalNumber;
|
|
// 保障说明
|
private String guaranteeExplanation;
|
|
// 投保年龄
|
private String insureAge;
|
|
// 告知义务
|
private String obligationDisclose;
|
|
// 投保须知
|
private String liabilityExemption;
|
|
//产品特色
|
private List<InsuranceFeatureDto> featureDtoList;
|
|
// 图片1
|
private String img1;
|
|
// 图片2
|
private String img2;
|
}
|