zhangnaisong
2024-07-22 6bc1206774770deb0b2df12ab24b4628e1f399eb
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
package com.ruoyi.sy.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;
 
/**
 * 罐车锁自动操控日志对象 ard_tank_lock_auto_process_log
 * 
 * @author ard
 * @date 2024-07-12
 */
public class ArdTankLockAutoProcessLog extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 主键 */
    private String id;
 
    /** 锁主键 */
    @Excel(name = "锁主键")
    private String lockId;
 
    /** 锁编号 */
    @Excel(name = "锁编号")
    private String lockNum;
 
    /** 三一车辆主键 */
    @Excel(name = "三一车辆主键")
    private String carId;
 
    /** 车牌号 */
    @Excel(name = "车牌号")
    private String carPlate;
 
    /** 电子围栏主键 */
    @Excel(name = "电子围栏主键")
    private String wallId;
 
    /** 电子围栏名称 */
    @Excel(name = "电子围栏名称")
    private String wallName;
 
    /** 电子围栏类型 */
    @Excel(name = "电子围栏类型")
    private String wallType;
 
    /** 操作 */
    @Excel(name = "操作")
    private String process;
 
    /** 操作原因 */
    @Excel(name = "操作原因")
    private String processReason;
 
    /** 经度 */
    @Excel(name = "经度")
    private String longitude;
 
    /** 纬度 */
    @Excel(name = "纬度")
    private String latitude;
 
    /** 速度 */
    @Excel(name = "速度")
    private String velocity;
 
    /** 操作时间 */
    @Excel(name = "操作时间")
    private String processTime;
 
    public void setId(String id) 
    {
        this.id = id;
    }
 
    public String getId() 
    {
        return id;
    }
    public void setLockId(String lockId) 
    {
        this.lockId = lockId;
    }
 
    public String getLockId() 
    {
        return lockId;
    }
    public void setLockNum(String lockNum) 
    {
        this.lockNum = lockNum;
    }
 
    public String getLockNum() 
    {
        return lockNum;
    }
    public void setCarId(String carId) 
    {
        this.carId = carId;
    }
 
    public String getCarId() 
    {
        return carId;
    }
    public void setCarPlate(String carPlate) 
    {
        this.carPlate = carPlate;
    }
 
    public String getCarPlate() 
    {
        return carPlate;
    }
    public void setWallId(String wallId) 
    {
        this.wallId = wallId;
    }
 
    public String getWallId() 
    {
        return wallId;
    }
    public void setWallName(String wallName) 
    {
        this.wallName = wallName;
    }
 
    public String getWallName() 
    {
        return wallName;
    }
    public void setWallType(String wallType) 
    {
        this.wallType = wallType;
    }
 
    public String getWallType() 
    {
        return wallType;
    }
    public void setProcess(String process) 
    {
        this.process = process;
    }
 
    public String getProcess() 
    {
        return process;
    }
    public void setProcessReason(String processReason) 
    {
        this.processReason = processReason;
    }
 
    public String getProcessReason() 
    {
        return processReason;
    }
    public void setLongitude(String longitude) 
    {
        this.longitude = longitude;
    }
 
    public String getLongitude() 
    {
        return longitude;
    }
    public void setLatitude(String latitude) 
    {
        this.latitude = latitude;
    }
 
    public String getLatitude() 
    {
        return latitude;
    }
    public void setVelocity(String velocity) 
    {
        this.velocity = velocity;
    }
 
    public String getVelocity() 
    {
        return velocity;
    }
    public void setProcessTime(String processTime) 
    {
        this.processTime = processTime;
    }
 
    public String getProcessTime() 
    {
        return processTime;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("lockId", getLockId())
            .append("lockNum", getLockNum())
            .append("carId", getCarId())
            .append("carPlate", getCarPlate())
            .append("wallId", getWallId())
            .append("wallName", getWallName())
            .append("wallType", getWallType())
            .append("process", getProcess())
            .append("processReason", getProcessReason())
            .append("longitude", getLongitude())
            .append("latitude", getLatitude())
            .append("velocity", getVelocity())
            .append("processTime", getProcessTime())
            .toString();
    }
}