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