| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- package com.ydtech.modules.inv.model.vo;
- import cn.afterturn.easypoi.excel.annotation.Excel;
- import lombok.Data;
- import java.io.Serializable;
- import java.math.BigDecimal;
- import java.time.LocalDate;
- @Data
- public class InvPayableStatementVo implements Serializable {
- private static final long serialVersionUID = -2318273096762644031L;
- /**
- * 业务渠道
- */
- @Excel(name = "业务渠道", fixedIndex = 0)
- private String businessChannel;
- /**
- * 签单日期
- */
- @Excel(name = "签单日期", fixedIndex = 1)
- private LocalDate signingDate;
- /**
- * 车牌号
- */
- @Excel(name = "车牌号", fixedIndex = 2)
- private String numberPlate;
- /**
- * 被保险人
- */
- @Excel(name = "被保险人", fixedIndex = 3)
- private String insured;
- /**
- * 保险公司
- */
- @Excel(name = "保险公司", fixedIndex = 4)
- private String insuranceCompany;
- /**
- * 险别
- */
- @Excel(name = "险别", fixedIndex = 5)
- private String dangerous;
- /**
- * 出单渠道
- */
- @Excel(name = "出单渠道", fixedIndex = 6)
- private String orderChannel;
- /**
- * 交强
- */
- @Excel(name = "信息", fixedIndex = 7)
- private BigDecimal strongCross;
- /**
- * 车船税
- */
- @Excel(name = "信息", fixedIndex = 8)
- private BigDecimal travelTax;
- /**
- * 商业
- */
- @Excel(name = "信息", fixedIndex = 9)
- private BigDecimal business;
- /**
- * 交强比例
- */
- @Excel(name = "费用", fixedIndex = 10)
- private String strongCrossProportion;
- /**
- * 商业比例
- */
- @Excel(name = "费用", fixedIndex = 11)
- private String businessProportion;
- /**
- * 车船税比例
- */
- @Excel(name = "费用", fixedIndex = 12)
- private String travelTaxProportion;
- /**
- * 应付
- */
- @Excel(name = "应付", fixedIndex = 13)
- private String handle;
- }
|