| 123456789101112131415161718192021222324252627282930313233343536373839 |
- package com.ydtech.modules.admin.model.dto;
- import com.alibaba.excel.annotation.ExcelProperty;
- import lombok.Data;
- import java.math.BigDecimal;
- @Data
- public class BusinessCompanyExcel {
- @ExcelProperty(value = "保险公司", index = 0)
- private String insuranceCompanyName;
- @ExcelProperty(value = "协议类型", index = 1)
- private String agreementType;
- @ExcelProperty(value = "合作公司", index = 2)
- private String partnerCompaniesName;
- @ExcelProperty(value = "对接人", index = 3)
- private String dockingPerson;
- @ExcelProperty(value = "对接人联系方式", index = 4)
- private String dockingPhone;
- @ExcelProperty(value = "总保费", index = 5)
- private String totalPremium;
- @ExcelProperty(value = "出单笔数", index = 6)
- private BigDecimal qutationInsureCount;
- @ExcelProperty(value = "单均保费", index = 7)
- private BigDecimal averagePremium;
- @ExcelProperty(value = "人员数量", index = 8)
- private BigDecimal userNumber;
- @ExcelProperty(value = "人均产能", index = 9)
- private BigDecimal perCapitaAmount;
- }
|