|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
package com.hnac.hzims.safeproduct.vo; |
|
|
|
|
|
|
|
|
|
import com.alibaba.excel.annotation.ExcelProperty; |
|
|
|
|
import io.swagger.annotations.ApiModel; |
|
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
|
import lombok.Data; |
|
|
|
@ -14,51 +15,67 @@ import java.math.BigDecimal;
|
|
|
|
|
@ApiModel(value = "年度里程数据VO类") |
|
|
|
|
public class CarMilesYearVO { |
|
|
|
|
|
|
|
|
|
@ExcelProperty(value = "单位", order = 0) |
|
|
|
|
@ApiModelProperty("单位") |
|
|
|
|
private String unit; |
|
|
|
|
|
|
|
|
|
@ExcelProperty(value = "品牌", order = 2) |
|
|
|
|
@ApiModelProperty("品牌") |
|
|
|
|
private String carBrand; |
|
|
|
|
|
|
|
|
|
@ExcelProperty(value = "车牌号", order = 1) |
|
|
|
|
@ApiModelProperty("车牌号") |
|
|
|
|
private String plateNumber; |
|
|
|
|
|
|
|
|
|
@ExcelProperty(value = "1月", order = 3) |
|
|
|
|
@ApiModelProperty("1月里程数") |
|
|
|
|
private BigDecimal januaryMiles; |
|
|
|
|
|
|
|
|
|
@ExcelProperty(value = "2月", order = 4) |
|
|
|
|
@ApiModelProperty("2月里程数") |
|
|
|
|
private BigDecimal februaryMiles; |
|
|
|
|
|
|
|
|
|
@ExcelProperty(value = "3月", order = 5) |
|
|
|
|
@ApiModelProperty("3月里程数") |
|
|
|
|
private BigDecimal marchMiles; |
|
|
|
|
|
|
|
|
|
@ExcelProperty(value = "4月", order = 6) |
|
|
|
|
@ApiModelProperty("4月里程数") |
|
|
|
|
private BigDecimal aprilMiles; |
|
|
|
|
|
|
|
|
|
@ExcelProperty(value = "5月", order = 7) |
|
|
|
|
@ApiModelProperty("5月里程数") |
|
|
|
|
private BigDecimal mayMiles; |
|
|
|
|
|
|
|
|
|
@ExcelProperty(value = "6月", order = 8) |
|
|
|
|
@ApiModelProperty("6月里程数") |
|
|
|
|
private BigDecimal juneMiles; |
|
|
|
|
|
|
|
|
|
@ExcelProperty(value = "7月", order = 9) |
|
|
|
|
@ApiModelProperty("7月里程数") |
|
|
|
|
private BigDecimal julyMiles; |
|
|
|
|
|
|
|
|
|
@ExcelProperty(value = "8月", order = 10) |
|
|
|
|
@ApiModelProperty("8月里程数") |
|
|
|
|
private BigDecimal augustMiles; |
|
|
|
|
|
|
|
|
|
@ExcelProperty(value = "9月", order = 11) |
|
|
|
|
@ApiModelProperty("9月里程数") |
|
|
|
|
private BigDecimal septemberMiles; |
|
|
|
|
|
|
|
|
|
@ExcelProperty(value = "10月", order = 12) |
|
|
|
|
@ApiModelProperty("10月里程数") |
|
|
|
|
private BigDecimal octoberMiles; |
|
|
|
|
|
|
|
|
|
@ExcelProperty(value = "11月", order = 13) |
|
|
|
|
@ApiModelProperty("11月里程数") |
|
|
|
|
private BigDecimal novemberMiles; |
|
|
|
|
|
|
|
|
|
@ExcelProperty(value = "12月", order = 14) |
|
|
|
|
@ApiModelProperty("12月里程数") |
|
|
|
|
private BigDecimal decemberMiles; |
|
|
|
|
|
|
|
|
|
@ExcelProperty(value = "合计里程/km", order = 15) |
|
|
|
|
@ApiModelProperty("合计里程数") |
|
|
|
|
private BigDecimal sumMiles; |
|
|
|
|
} |
|
|
|
|