zhizhijie
12 小时以前 fbc1c1590e7e81a550beb50c7cf65c663c7c5b41
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
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;
}