| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- package com.ydtech.modules.inv.model.dto;
- import cn.afterturn.easypoi.excel.annotation.Excel;
- import lombok.Data;
- import java.math.BigDecimal;
- @Data
- public class InsBxPlyIncomeExcelDto {
- /**
- * 车牌号
- */
- @Excel(name = "车牌号")
- private String licenseno;
- /**
- * 交强保单号
- */
- @Excel(name = "交强保单号")
- private String policyno;
- /**
- * 商业保单号
- */
- @Excel(name = "商业保单号")
- private String syPolicyno;
- /**
- * 交强手续费金额
- */
- @Excel(name = "交强手续费金额")
- private BigDecimal jqSuperviseCostsPremiums;
- /**
- * 交强手续费比例
- */
- @Excel(name = "交强手续费比例")
- private BigDecimal jqSuperviseCostsProportion;
- /**
- * 商业手续费金额
- */
- @Excel(name = "商业手续费金额")
- private BigDecimal sySuperviseCostsPremiums;
- /**
- * 商业手续费比例
- */
- @Excel(name = "商业手续费比例")
- private BigDecimal sySuperviseCostsProportion;
- /**
- * 交强保费
- */
- @Excel(name = "交强保费")
- private BigDecimal jqPremium;
- /**
- * 商业保费
- */
- @Excel(name = "商业保费")
- private BigDecimal syPremium;
- }
|