BusinessCompanyExcel.java 1.1 KB

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