k94314517
2025-06-25 03bc0fcf698225966ce013a5ec39a5b69843bb13
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
package com.doumee.dao.business.vo.dataBoard;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.List;
 
@Data
public class InsuranceApplyDataVO {
 
    @ApiModelProperty(value = "累计投保企业数量", example = "1")
    private Integer  insuranceCompanyNum;
 
    @ApiModelProperty(value = "本月新增投保企业数量", example = "1")
    private Integer  monthAddInsuranceCompanyNum;
 
    @ApiModelProperty(value = "累计有效保单数量", example = "1")
    private Integer  insuranceNum;
 
    @ApiModelProperty(value = "本月新增有效保单数量", example = "1")
    private Integer  monthAddInsuranceNum;
 
    @ApiModelProperty(value = "累计保障人员数量", example = "1")
    private Integer  memberNum;
 
    @ApiModelProperty(value = "本月新增保障人员数量", example = "1")
    private Integer  monthAddMemberNum;
 
    @ApiModelProperty(value = "合计总费用", example = "1")
    private BigDecimal  totalFee;
 
    @ApiModelProperty(value = "本月新增费用", example = "1")
    private BigDecimal  monthAddTotalFee;
 
    @ApiModelProperty(value = "在保企业数量", example = "1")
    private Integer  useCompanyNum;
 
    @ApiModelProperty(value = "在保保单数量", example = "1")
    private Integer  useInsuranceNum;
 
    @ApiModelProperty(value = "在保人数", example = "1")
    private Integer  useMemberNum;
 
    @ApiModelProperty(value = "委托保保单数量", example = "1")
    private Integer  wtbInsuranceNum;
 
    @ApiModelProperty(value = "直保保单数量", example = "1")
    private Integer  zbInsuranceNum;
 
 
}