| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- package com.ydtech.modules.largescreen.model;
- import io.swagger.annotations.Api;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import java.util.List;
- /**
- * 已有协议的保险公司
- */
- @Data
- public class CompanyInfoData {
- @ApiModelProperty(value = "保险类型")
- private String insurance;
- @ApiModelProperty(value = "总订单数")
- public Integer sumOrderNum;
- @ApiModelProperty(value = "交强保费")
- public String jqPremium;
- @ApiModelProperty(value = "交强总保费")
- public String jqSumPremium;
- @ApiModelProperty(value = "商业总保费")
- public String sySumPremium;
- @ApiModelProperty(value = "车船税总费用")
- public String taxSumPremium;
- @ApiModelProperty(value = "占比")
- public String ratio;
- public CompanyInfoData(){
- this.insurance = "";
- this.sumOrderNum = 0;
- this.jqPremium = "0";
- this.jqSumPremium = "0";
- this.sySumPremium = "0";
- this.taxSumPremium = "0";
- this.ratio = "0";
- }
- }
|