zhizhijie
5 小时以前 799ec6799ad9e994f7d369f059ca7682962f648f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package com.trafficaudit.dataimport.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.time.LocalDateTime;
 
/**
 * 交企统H204表:道路货运车辆能源消耗情况(车辆粒度季报)
 */
@Data
@TableName("h204_vehicle_quarterly")
public class EnergyVehicleQuarterly {
    @TableId(type = IdType.AUTO)
    private Long id;
    /** 报表期 2026-06(季度末月) */
    private String reportPeriod;
    /** 所属地区(行政区划代码) */
    private String regionCode;
    /** 企业代码 */
    private String enterpriseCode;
    /** 企业名称 */
    private String enterpriseName;
    /** 车牌号 */
    private String plateNo;
    /** 车辆类型代码 */
    private String vehicleTypeCode;
    /** 车辆类型(中文) */
    private String vehicleType;
    /** 燃料类型代码 */
    private String fuelTypeCode;
    /** 燃料类型(中文) */
    private String fuelType;
    /** 出厂年份 */
    private Integer manufactureYear;
    /** 标记吨位(吨) */
    private Double markedTonnage;
    /** 总行程(公里) */
    private Double totalMileage;
    /** 载货里程(公里) */
    private Double loadedMileage;
    /** 空驶里程(公里) */
    private Double emptyMileage;
    /** 货运量(吨) */
    private Double freight;
    /** 货物周转量(吨公里) */
    private Double turnover;
    /** 趟次数(个) */
    private Integer tripCount;
    /** 燃料1计量单位 */
    private String fuelUnit;
    /** 燃料1消耗量 */
    private Double fuelConsumption;
    /** 平均运距(公里) */
    private Double avgDistance;
    /** 平均载货吨位(吨) */
    private Double avgLoadedTonnage;
    /** 单趟平均里程(公里) */
    private Double avgTripMileage;
    /** 百公里单耗 */
    @TableField("fuel_per_100km")
    private Double fuelPer100km;
    /** 周转量单耗 */
    private Double turnoverFuel;
    private Long importBatchId;
    private LocalDateTime createdAt;
}