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
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;
 
/**
 * 公路旅客运政车辆数据(车辆数/载客位数)
 */
@Data
@TableName("passenger_auth_vehicle")
public class PassengerAuthVehicle {
    @TableId(type = IdType.AUTO)
    private Long id;
    private String reportPeriod;
    /** 企业代码 */
    private String enterpriseCode;
    /** 企业名称 */
    private String enterpriseName;
    /** 车辆数 */
    private Integer vehicleCount;
    /** 载客位数 */
    private Integer seatCount;
    private Long importBatchId;
    private LocalDateTime createdAt;
}