1
zj
2025-09-20 02d6a517f7d4dac2d5271cefe421a628d838414b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
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;
}