package cn.com.lzt.oilconsumption.entity; import com.daju.base.config.LocalDateTimeSerializer; import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.databind.annotation.JsonSerialize; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.experimental.Accessors; import org.apache.ibatis.plugin.Signature; import org.jeecgframework.poi.excel.annotation.Excel; import org.springframework.format.annotation.DateTimeFormat; import java.io.Serializable; import java.time.LocalDateTime; import java.util.Date; /** * @author 刘梦祥 * @Title: Entity * @Description: 车辆油耗统计导出实体 * @date 2022年1月12日13:09:44 */ @Data @EqualsAndHashCode(callSuper = false) @Accessors(chain = true) public class TBCarGasRefuelExcelEntity implements Serializable { private static final long serialVersionUID = 1L; private String carId; @Excel(name = "车牌号") private String plate; @Excel(name = "车辆类型") private String carType; @Excel(name = "加油点") private String gasStation; @Excel(name = "加油统计开始时间",format = "yyyy-MM-dd") private String refuelStartTime; @Excel(name = "加油统计结束时间",format = "yyyy-MM-dd") private String refuelEndTime; @Excel(name = "加油量(L)") private String quantity; @Excel(name = "总里程(Km)") private String totalMileage; @Excel(name = "百公里油耗") private String baseQuantity; @Excel(name = "总油费") private String refuelMoney; @Excel(name = "里程统计开始时间",format = "yyyy-MM-dd") private String startTime; @Excel(name = "里程统计结束时间",format = "yyyy-MM-dd") private String endTime; @Excel(name = "油耗状态") private String errStatus; }