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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package com.trafficaudit.dataimport.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.time.LocalDateTime;
 
/**
 * 交企统H203-2表:道路货物运输月度生产情况
 */
@Data
@TableName("h2032_enterprise_monthly")
public class H2032EnterpriseMonthly {
    @TableId(type = IdType.AUTO)
    private Long id;
    private String reportPeriod;
    /** 所属地区(行政区划代码) */
    private String regionCode;
    /** 企业代码 */
    private String enterpriseCode;
    /** 企业名称 */
    private String enterpriseName;
    /** 统一社会信用代码 */
    private String unifiedCreditCode;
    /** 填报单位 */
    private String reportUnit;
 
    private Integer vehicleTotal;
    private Double tonsTotal;
    private Integer vehicleTractor;
    private Integer vehicleTrailer;
    private Double tonsTrailer;
    private Integer vehicleContainer;
    private Double tonsContainer;
    private Integer vehicleWhole;
    private Double tonsWhole;
 
    private Double freightTotal;
    private Double turnoverTotal;
 
    private Double freightContainer;
    private Double freightCoal;
    private Double freightOilGas;
    private Double freightCrudeOil;
    private Double freightMetalOre;
    private Double freightIronOre;
    private Double freightBuilding;
    private Double freightGrain;
 
    private Double avgTonnage;
    private Double avgTonnageTrailer;
    private Double avgTonnageWhole;
    private Double avgDistance;
    private Double dailyTripsPerTon;
    private Double dailyMileagePerVehicle;
    private Double dailyVolumePerVehicle;
    private Double dailyTripsWithTractor;
 
    private Double vehicleMomGrowth;
    private Double tonsMomGrowth;
    private Double freightMomGrowth;
    private Double turnoverMomGrowth;
    private Double avgDistanceMomGrowth;
 
    private Double vehicleYoyGrowth;
    private Double tonsYoyGrowth;
    private Double tractorTrailerRatio;
    private Double freightYoyGrowth;
    private Double turnoverYoyGrowth;
    private Double avgDistanceYoyGrowth;
 
    private String unitLeader;
    private String statsLeader;
    private String contactPerson;
    private String contactPhone;
    private String reportDate;
    private String verifyExplanation;
    private String reportNotes;
    private String modifyRecord;
 
    private Long importBatchId;
    private LocalDateTime createdAt;
}