package com.ydtech.modules.admin.model.dto; import com.alibaba.excel.annotation.ExcelIgnore; import com.alibaba.excel.annotation.ExcelProperty; import lombok.Data; @Data public class QuotationDetailsExcel { @ExcelProperty(value = "订单号",index = 0) private String orderno; @ExcelProperty(value = "协议编码",index = 1) private String agreementId; @ExcelProperty(value = "订单状态",index = 2) private String orderstatus; @ExcelProperty(value = "保险公司编号",index = 3) private String companyId; @ExcelProperty(value = "合作公司编号",index = 4) private String partnerCompaniesId; @ExcelProperty(value = "合作公司名称",index = 5) private String partnerCompaniesName; @ExcelProperty(value = "保险名称",index = 6) private String inscompany; @ExcelProperty(value = "交强保单号",index = 7) private String jqpolicyno; @ExcelProperty(value = "商业保单号",index = 8) private String sypolicyno; @ExcelProperty(value = "总保费",index = 9) private String sumpremium; @ExcelProperty(value = "交强险费用",index = 10) private String jqpremium; @ExcelProperty(value = "商业险费用",index = 11) private String sypremium; @ExcelProperty(value = "驾意险费用",index = 12) private String jypremium; @ExcelProperty(value = "录单日期",index = 13) private String createtime; @ExcelProperty(value = "签单日期",index = 14) private String signingTime; @ExcelProperty(value = "是否是人工审核",index = 15) private String auditType; @ExcelProperty(value = "机构来源",index = 16) private String managementSource; @ExcelIgnore private String auditstatus; }