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("transport_auth_vehicle")
|
public class TransportAuthVehicle {
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
private String reportPeriod;
|
private String enterpriseName;
|
private Integer tractorCount;
|
private Integer trailerCount;
|
private Integer otherCount;
|
private Double trailerTons;
|
private Double otherTons;
|
private Long importBatchId;
|
private LocalDateTime createdAt;
|
}
|