Pu Zhibing
2024-12-24 5c2176867b9fe0ff4b70e352c5f643f2ae5c1bc3
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
package com.stylefeng.guns.modular.system.util.videoGateway.model;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author zhibing.pu
 * @Date 2024/12/19 11:01
 */
@Data
public class Vehicle {
    /**
     * 记录id
     */
    @ApiModelProperty("记录id")
    private Integer Id;
    /**
     * 车牌号
     */
    @ApiModelProperty("车牌号")
    private String vehicleNum;
    /**
     * 公司 id
     */
    @ApiModelProperty("公司 id")
    private String companyId;
    /**
     * 公司名称
     */
    @ApiModelProperty("公司名称")
    private String companyName;
    /**
     * 年审开始时间,格式:yyyy-MM-dd
     */
    @ApiModelProperty("年审开始时间,格式:yyyy-MM-dd")
    private String inspectPeriodStart;
    /**
     * 年审结束时间,格式:yyyy-MM-dd
     */
    @ApiModelProperty("年审结束时间,格式:yyyy-MM-dd")
    private String inspectPeriodEnd;
    /**
     * 协议类型:808-guangzhou(这个是18协议)、2(这个是23协议)
     */
    @ApiModelProperty("协议类型:808-guangzhou(这个是18协议)、2(这个是23协议)")
    private String vehicleGpsProtocol;
}