wzp
2025-09-03 a8553f9ef7e165b6348243af91caad1a987f8f9c
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
package com.ruoyi.system.domain;
 
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
 
/**
 * GPS采集日志对象 tb_gps_collect_log
 */
public class GpsCollectLog extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
    /** 日志ID */
    private Long logId;
 
    /** 车辆ID */
    @Excel(name = "车辆ID")
    private Long vehicleId;
 
    /** 车牌号 */
    @Excel(name = "车牌号")
    private String vehicleNo;
 
    /** 采集类型(1自动 2手动) */
    @Excel(name = "采集类型", readConverterExp = "1=自动,2=手动")
    private String collectType;
 
    /** 采集状态(0成功 1失败) */
    @Excel(name = "采集状态", readConverterExp = "0=成功,1=失败")
    private String collectStatus;
 
    /** 错误信息 */
    @Excel(name = "错误信息")
    private String errorMsg;
 
    /** 采集时间 */
    @Excel(name = "采集时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    private String collectTime;
 
    public void setLogId(Long logId) {
        this.logId = logId;
    }
 
    public Long getLogId() {
        return logId;
    }
 
    public void setVehicleId(Long vehicleId) {
        this.vehicleId = vehicleId;
    }
 
    public Long getVehicleId() {
        return vehicleId;
    }
 
    public void setVehicleNo(String vehicleNo) {
        this.vehicleNo = vehicleNo;
    }
 
    public String getVehicleNo() {
        return vehicleNo;
    }
 
    public void setCollectType(String collectType) {
        this.collectType = collectType;
    }
 
    public String getCollectType() {
        return collectType;
    }
 
    public void setCollectStatus(String collectStatus) {
        this.collectStatus = collectStatus;
    }
 
    public String getCollectStatus() {
        return collectStatus;
    }
 
    public void setErrorMsg(String errorMsg) {
        this.errorMsg = errorMsg;
    }
 
    public String getErrorMsg() {
        return errorMsg;
    }
 
    public void setCollectTime(String collectTime) {
        this.collectTime = collectTime;
    }
 
    public String getCollectTime() {
        return collectTime;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
                .append("logId", getLogId())
                .append("vehicleId", getVehicleId())
                .append("vehicleNo", getVehicleNo())
                .append("collectType", getCollectType())
                .append("collectStatus", getCollectStatus())
                .append("errorMsg", getErrorMsg())
                .append("collectTime", getCollectTime())
                .append("createTime", getCreateTime())
                .toString();
    }