package com.ydtech.modules.inv.model.dto; import cn.afterturn.easypoi.excel.annotation.Excel; import com.baomidou.mybatisplus.annotation.TableField; import lombok.Data; import java.math.BigDecimal; import java.util.Date; /** * 财务 - 保险公司 - 中煤Excel模板 DTO */ @Data public class InvInsChinaCoalExcelDto { @Excel(name = "保单号") private String policyNum; @Excel(name = "车牌号") private String plateNum; /** * 付款日期 */ @Excel(name = "核保核批确认日期") private Date payDate; /** * 起保日期 */ @Excel(name = "起保日期") private Date cocDate; /** * 险种名称 */ @Excel(name = "险种名称") private String insKindName; /** * 投保习惯 */ @Excel(name = "投保习惯") private String insHabit; /** * 使用性质 */ @Excel(name = "使用性质") private String useNature; /** * 被保险人 */ @Excel(name = "被保险人") private String insured; /** * 投保人 */ @Excel(name = "投保人") private String applicant; /** * 保费 */ @Excel(name = "批改后保费含税") private BigDecimal premium; /** * 税后保费 */ @Excel(name = "税后保费") private BigDecimal atPremium; /** * 车船税 */ @Excel(name = "车船税缴税金额") private BigDecimal vavt; /** * 三者险保额 */ @Excel(name = "三者险保额") private String tpi; /** * 三者险保费(不含税) */ @Excel(name = "三者险保费(不含税)") private String tpiPremium; /** * 批改类型 */ @Excel(name = "批改类型") private String correctionType; /** * 排量 */ @Excel(name = "排量") private String cc; @Excel(name = "中煤分") private String chinaGrade; /** * 光博分 */ @Excel(name = "光博分") private String lightGrade; /** * 渠道账号 */ @Excel(name = "中介人代码") private String insAccount; /** * 网点代码 */ @Excel(name = "网点代码") private String branchCode; @TableField(exist = false) private static final long serialVersionUID = 1L; }