ReceivableResultVo.java 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package com.ydtech.modules.inv.model.vo;
  2. import com.alibaba.excel.annotation.ExcelProperty;
  3. import com.ydtech.modules.nai.httpvo.excel.Excel;
  4. import io.swagger.annotations.Api;
  5. import io.swagger.annotations.ApiModelProperty;
  6. import lombok.Data;
  7. @Data
  8. public class ReceivableResultVo {
  9. @ApiModelProperty(value = "年月")
  10. @ExcelProperty(value = "年月",index = 0)
  11. private String yearmonth;
  12. @ApiModelProperty(value = "日期")
  13. @ExcelProperty(value = "日期",index = 1)
  14. private String day;
  15. @ApiModelProperty(value = "保险公司名称")
  16. @ExcelProperty(value = "保险公司名称",index = 2)
  17. private String insuranceName;
  18. @ApiModelProperty(value = "交强")
  19. @ExcelProperty(value = "交强",index = 3)
  20. private String jqPremiumTax;
  21. @ApiModelProperty(value = "商业")
  22. @ExcelProperty(value = "商业",index = 4)
  23. private String syPremiumTax;
  24. @ApiModelProperty(value = "车船税")
  25. @ExcelProperty(value = "车船税",index = 5)
  26. private String taxamount;
  27. @ApiModelProperty(value = "非车")
  28. @ExcelProperty(value = "非车",index = 6)
  29. private String nonCarPremiumTax;
  30. @ApiModelProperty(value = "保费合计")
  31. @ExcelProperty(value = "保费合计",index = 7)
  32. private String totalPermium;
  33. @ApiModelProperty(value = "手续费")
  34. @ExcelProperty(value = "手续费",index = 8)
  35. private String premium;
  36. @ApiModelProperty(value = "非跟单")
  37. @ExcelProperty(value = "非跟单",index = 9)
  38. private String nonCopying;
  39. @ApiModelProperty(value = "应收合计")
  40. @ExcelProperty(value = "应收合计",index = 10)
  41. private String totalReceivable;
  42. @ApiModelProperty(value = "补贴金额")
  43. private String subsidyAmount;
  44. @ApiModelProperty(value = "总应收金额")
  45. private String totalReceivableAmount;
  46. }