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-1表:公路旅客运输月度生产情况
|
*/
|
@Data
|
@TableName("h2031_enterprise_monthly")
|
public class PassengerEnterpriseMonthly {
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
private String reportPeriod;
|
/** 所属地区(行政区划代码) */
|
private String regionCode;
|
/** 企业代码 */
|
private String enterpriseCode;
|
/** 企业名称 */
|
private String enterpriseName;
|
|
/** 客运车辆_总计 */
|
private Integer vehicleTotal;
|
/** 核定载客位_总计 */
|
private Integer seatTotal;
|
/** 车辆数_客运班车(含定线旅游客运客车) */
|
private Integer vehicleSchedule;
|
/** 核定载客位_客运班车(含定线旅游客运客车) */
|
private Integer seatSchedule;
|
/** 车辆数_客运包车(含非定线旅游客运客车) */
|
private Integer vehicleCharter;
|
/** 核定载客位_客运包车(含非定线旅游客运客车) */
|
private Integer seatCharter;
|
|
/** 客运量_总计 */
|
private Double passengerTotal;
|
/** 旅客周转量_总计 */
|
private Double turnoverTotal;
|
|
/** 客运量_一类客运班线(含定线旅游) */
|
private Double passengerClass1;
|
private Double turnoverClass1;
|
/** 客运量_二类客运班线(含定线旅游) */
|
private Double passengerClass2;
|
private Double turnoverClass2;
|
/** 客运量_三类客运班线(含定线旅游) */
|
private Double passengerClass3;
|
private Double turnoverClass3;
|
/** 客运量_四类客运班线(含定线旅游) */
|
private Double passengerClass4;
|
private Double turnoverClass4;
|
/** 客运量_客运包车(含非定线旅游) */
|
private Double passengerCharter;
|
private Double turnoverCharter;
|
|
/** 客运平均运距 */
|
private Double avgDistanceTotal;
|
/** 一类客运班线平均运距 */
|
private Double avgDistanceClass1;
|
private Double avgDistanceClass2;
|
private Double avgDistanceClass3;
|
private Double avgDistanceClass4;
|
/** 旅游、包车平均运距 */
|
private Double avgDistanceCharter;
|
|
private String verifyExplanation;
|
private Long importBatchId;
|
private LocalDateTime createdAt;
|
}
|