xyc
5 天以前 664cae654867b528ea339f187ebe290cb04d6fcf
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
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;
 
/**
 * 城市客运第1步:城市公交企业月度数据
 * 数据源:导入_城市公共交通月度运营情况(YYYY年M月).xls(企业级明细,仅取公共汽电车字段)
 */
@Data
@TableName("city_bus_monthly")
public class CityBusMonthly {
    @TableId(type = IdType.AUTO)
    private Long id;
    /** 报表期 2026-07 */
    private String reportPeriod;
    /** 所属地区(行政区划代码) */
    private String regionCode;
    /** 市州(由地区代码映射) */
    private String city;
    /** 企业代码 */
    private String enterpriseCode;
    /** 企业名称 */
    private String enterpriseName;
 
    /** 公共汽电车运营车数 */
    private Double opVehicles;
    /** 运营站点总个数 */
    private Double stopTotal;
    /** 其中:城市内运营站点 */
    private Double stopCity;
    /** 公共汽电车客运量(万人次) */
    private Double passengerVolume;
    /** 其中:城市内客运量(万人次) */
    private Double passengerCity;
    /** 公共汽电车旅客周转量(万人公里) */
    private Double turnover;
    /** 其中:城市内旅客周转量(万人公里) */
    private Double turnoverCity;
    /** 公共汽电车平均运距(公里) */
    private Double avgDistance;
    /** 城市内平均运距(公里) */
    private Double avgDistanceCity;
    /** 城际城乡客运量(万人次) */
    private Double passengerChengxiang;
    /** 城际城乡旅客周转量(万人公里) */
    private Double turnoverChengxiang;
    /** 城际城乡平均运距(公里) */
    private Double avgDistanceChengxiang;
 
    /** 运营车数环比增速 */
    private Double rateOpVehiclesMom;
    /** 客运量环比增速 */
    private Double ratePassengerMom;
    /** 城市内客运量环比 */
    private Double ratePassengerCityMom;
    /** 城际城乡客运量环比增速 */
    private Double rateChengxiangMom;
    /** 城际城乡旅客周转量环比增速 */
    private Double rateChengxiangTurnoverMom;
    /** 旅客周转量环比增速 */
    private Double rateTurnoverMom;
    /** 平均运距环比增减(公里) */
    private Double avgDistanceMomChange;
    /** 城市内平均运距环比增减(公里) */
    private Double avgDistanceCityMomChange;
    /** 单车日均客运量 */
    private Double dailyPassengerPerVehicle;
 
    /** 运营车数同比增速 */
    private Double rateOpVehiclesYoy;
    /** 客运量同比增速 */
    private Double ratePassengerYoy;
    /** 城市内客运量同比增速 */
    private Double ratePassengerCityYoy;
    /** 城际城乡客运量同比增速 */
    private Double rateChengxiangYoy;
    /** 城际城乡旅客周转量同比增速 */
    private Double rateChengxiangTurnoverYoy;
    /** 旅客周转量同比增速 */
    private Double rateTurnoverYoy;
 
    /** 城市内运营站点占比 */
    private Double stopCityRatio;
    /** 城市内客运量占比 */
    private Double passengerCityRatio;
    /** 城际城乡客运量占比 */
    private Double chengxiangRatio;
 
    /** 填表人 */
    private String contactPerson;
    /** 联系电话 */
    private String contactPhone;
    /** 报出日期 */
    private String reportDate;
    /** 核实性原因解释 */
    private String verifyExplanation;
    /** 上报说明 */
    private String reportNote;
    /** 修改记录 */
    private String modifyRecord;
 
    /** 轨道交通_客运量(万人次) */
    private Double railPassengerVolume;
    /** 轨道交通_旅客周转量(万人公里) */
    private Double railTurnover;
    /** 城市客运轮渡_客运量(万人次) */
    private Double ferryPassengerVolume;
    /** 城市客运轮渡_旅客周转量(万人公里) */
    private Double ferryTurnover;
 
    private LocalDateTime createdAt;
}