TBCarGasRefuelExcelEntity.java 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package cn.com.lzt.oilconsumption.entity;
  2. import com.daju.base.config.LocalDateTimeSerializer;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import com.fasterxml.jackson.databind.annotation.JsonSerialize;
  5. import lombok.Data;
  6. import lombok.EqualsAndHashCode;
  7. import lombok.experimental.Accessors;
  8. import org.apache.ibatis.plugin.Signature;
  9. import org.jeecgframework.poi.excel.annotation.Excel;
  10. import org.springframework.format.annotation.DateTimeFormat;
  11. import java.io.Serializable;
  12. import java.time.LocalDateTime;
  13. import java.util.Date;
  14. /**
  15. * @author 刘梦祥
  16. * @Title: Entity
  17. * @Description: 车辆油耗统计导出实体
  18. * @date 2022年1月12日13:09:44
  19. */
  20. @Data
  21. @EqualsAndHashCode(callSuper = false)
  22. @Accessors(chain = true)
  23. public class TBCarGasRefuelExcelEntity implements Serializable {
  24. private static final long serialVersionUID = 1L;
  25. private String carId;
  26. @Excel(name = "车牌号")
  27. private String plate;
  28. @Excel(name = "车辆类型")
  29. private String carType;
  30. @Excel(name = "加油点")
  31. private String gasStation;
  32. @Excel(name = "加油统计开始时间",format = "yyyy-MM-dd")
  33. private String refuelStartTime;
  34. @Excel(name = "加油统计结束时间",format = "yyyy-MM-dd")
  35. private String refuelEndTime;
  36. @Excel(name = "加油量(L)")
  37. private String quantity;
  38. @Excel(name = "总里程(Km)")
  39. private String totalMileage;
  40. @Excel(name = "百公里油耗")
  41. private String baseQuantity;
  42. @Excel(name = "总油费")
  43. private String refuelMoney;
  44. @Excel(name = "里程统计开始时间",format = "yyyy-MM-dd")
  45. private String startTime;
  46. @Excel(name = "里程统计结束时间",format = "yyyy-MM-dd")
  47. private String endTime;
  48. @Excel(name = "油耗状态")
  49. private String errStatus;
  50. }