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; }