package com.ydtech.modules.inv.model.vo; import com.alibaba.excel.annotation.ExcelProperty; import com.ydtech.modules.nai.httpvo.excel.Excel; import io.swagger.annotations.Api; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @Data public class ReceivableResultVo { @ApiModelProperty(value = "年月") @ExcelProperty(value = "年月",index = 0) private String yearmonth; @ApiModelProperty(value = "日期") @ExcelProperty(value = "日期",index = 1) private String day; @ApiModelProperty(value = "保险公司名称") @ExcelProperty(value = "保险公司名称",index = 2) private String insuranceName; @ApiModelProperty(value = "交强") @ExcelProperty(value = "交强",index = 3) private String jqPremiumTax; @ApiModelProperty(value = "商业") @ExcelProperty(value = "商业",index = 4) private String syPremiumTax; @ApiModelProperty(value = "车船税") @ExcelProperty(value = "车船税",index = 5) private String taxamount; @ApiModelProperty(value = "非车") @ExcelProperty(value = "非车",index = 6) private String nonCarPremiumTax; @ApiModelProperty(value = "保费合计") @ExcelProperty(value = "保费合计",index = 7) private String totalPermium; @ApiModelProperty(value = "手续费") @ExcelProperty(value = "手续费",index = 8) private String premium; @ApiModelProperty(value = "非跟单") @ExcelProperty(value = "非跟单",index = 9) private String nonCopying; @ApiModelProperty(value = "应收合计") @ExcelProperty(value = "应收合计",index = 10) private String totalReceivable; @ApiModelProperty(value = "补贴金额") private String subsidyAmount; @ApiModelProperty(value = "总应收金额") private String totalReceivableAmount; }