zhizhijie
11 小时以前 91d7eee872986f3aaa6e04edf843dd3a0526ba8f
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
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;
 
/**
 * 城市客运第2步:巡游出租汽车运营服务情况月报(市州级)
 * 数据源:导入_巡游出租汽车运营服务情况月报(YYYY年M月).xls
 */
@Data
@TableName("city_taxi_monthly")
public class CityTaxiMonthly {
    @TableId(type = IdType.AUTO)
    private Long id;
    /** 报表期 2026-07 */
    private String reportPeriod;
    /** 所属地区代码 */
    private String regionCode;
    /** 市州 */
    private String city;
 
    /** 载客车次总数 */
    private Double tripTotal;
    /** 载客车次总数_城市内 */
    private Double tripCity;
    /** 客运量(万人次) */
    private Double passengerVolume;
    /** 客运量_其中城市内 */
    private Double passengerCity;
    /** 旅客周转量(万人公里) */
    private Double turnover;
    /** 旅客周转量_城市内 */
    private Double turnoverCity;
    /** 运营车辆数 */
    private Double opVehicles;
    /** 巡游出租汽车平均运距(公里) */
    private Double avgDistance;
    /** 城市内平均运距(公里) */
    private Double avgDistanceCity;
    /** 单车日均载客车次 */
    private Double dailyTripsPerVehicle;
    /** 单车日均客运量 */
    private Double dailyPassengerPerVehicle;
    /** 单车次载客人数 */
    private Double passengersPerTrip;
    /** 单车次载客人数_城市内 */
    private Double passengersPerTripCity;
    /** 单车次载客人数_城际城乡 */
    private Double passengersPerTripChengxiang;
 
    /** 运营车数环比增速 */
    private Double rateOpVehiclesMom;
    /** 运营车数同比增速 */
    private Double rateOpVehiclesYoy;
    /** 载客车次总数环比增速 */
    private Double rateTripMom;
    /** 载客车次同比增速 */
    private Double rateTripYoy;
    /** 客运量环比增速 */
    private Double ratePassengerMom;
    /** 客运量同比增速 */
    private Double ratePassengerYoy;
    /** 平均运距环比增减(公里) */
    private Double avgDistanceMomChange;
    /** 平均运距_城市内环比增减(公里) */
    private Double avgDistanceCityMomChange;
    /** 载客车次总数环比增速_城市内 */
    private Double rateTripCityMom;
    /** 客运量环比增速_城市内 */
    private Double ratePassengerCityMom;
    /** 载客车次总数_城际城乡环比增速 */
    private Double rateTripChengxiangMom;
    /** 客运量_城际城乡环比增速 */
    private Double ratePassengerChengxiangMom;
    /** 平均运距_城际城乡(公里) */
    private Double avgDistanceChengxiang;
 
    /** 载客车次总数_城市内占比 */
    private Double tripCityRatio;
    /** 客运量_城市内占比 */
    private Double passengerCityRatio;
 
    private String contactPerson;
    private String contactPhone;
    private String reportDate;
    private String verifyExplanation;
    private String reportNote;
    private String modifyRecord;
 
    private LocalDateTime createdAt;
}