InvPayableStatementVo.java 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. package com.ydtech.modules.inv.model.vo;
  2. import cn.afterturn.easypoi.excel.annotation.Excel;
  3. import lombok.Data;
  4. import java.io.Serializable;
  5. import java.math.BigDecimal;
  6. import java.time.LocalDate;
  7. @Data
  8. public class InvPayableStatementVo implements Serializable {
  9. private static final long serialVersionUID = -2318273096762644031L;
  10. /**
  11. * 业务渠道
  12. */
  13. @Excel(name = "业务渠道", fixedIndex = 0)
  14. private String businessChannel;
  15. /**
  16. * 签单日期
  17. */
  18. @Excel(name = "签单日期", fixedIndex = 1)
  19. private LocalDate signingDate;
  20. /**
  21. * 车牌号
  22. */
  23. @Excel(name = "车牌号", fixedIndex = 2)
  24. private String numberPlate;
  25. /**
  26. * 被保险人
  27. */
  28. @Excel(name = "被保险人", fixedIndex = 3)
  29. private String insured;
  30. /**
  31. * 保险公司
  32. */
  33. @Excel(name = "保险公司", fixedIndex = 4)
  34. private String insuranceCompany;
  35. /**
  36. * 险别
  37. */
  38. @Excel(name = "险别", fixedIndex = 5)
  39. private String dangerous;
  40. /**
  41. * 出单渠道
  42. */
  43. @Excel(name = "出单渠道", fixedIndex = 6)
  44. private String orderChannel;
  45. /**
  46. * 交强
  47. */
  48. @Excel(name = "信息", fixedIndex = 7)
  49. private BigDecimal strongCross;
  50. /**
  51. * 车船税
  52. */
  53. @Excel(name = "信息", fixedIndex = 8)
  54. private BigDecimal travelTax;
  55. /**
  56. * 商业
  57. */
  58. @Excel(name = "信息", fixedIndex = 9)
  59. private BigDecimal business;
  60. /**
  61. * 交强比例
  62. */
  63. @Excel(name = "费用", fixedIndex = 10)
  64. private String strongCrossProportion;
  65. /**
  66. * 商业比例
  67. */
  68. @Excel(name = "费用", fixedIndex = 11)
  69. private String businessProportion;
  70. /**
  71. * 车船税比例
  72. */
  73. @Excel(name = "费用", fixedIndex = 12)
  74. private String travelTaxProportion;
  75. /**
  76. * 应付
  77. */
  78. @Excel(name = "应付", fixedIndex = 13)
  79. private String handle;
  80. }