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