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;
|
}
|