liusuyi
2024-10-10 38f29e38fcc668171dc05c53d40a36b895c86102
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
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_wall_temporary
 * 
 * @author ard
 * @date 2024-08-01
 */
public class ArdTankWallTemporary extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 主键 */
    private String id;
 
    /** 围栏名称 */
    @Excel(name = "围栏名称")
    private String wallName;
 
    /** 经度 */
    @Excel(name = "经度")
    private Double longitude;
 
    /** 纬度 */
    @Excel(name = "纬度")
    private Double latitude;
 
    /** 距离 */
    @Excel(name = "距离")
    private Integer distance;
 
    /** 时长 */
    @Excel(name = "时长")
    private String interval;
 
    /** 操作时间 */
    @Excel(name = "操作时间")
    private String processTime;
 
    /** 1为生效,0为失效,-1为到期 */
    @Excel(name = "1为生效,0为失效,-1为到期")
    private String processMark;
 
    /** 用户主键 */
    @Excel(name = "用户主键")
    private String userId;
 
    /** 用户名称 */
    @Excel(name = "用户名称")
    private String userName;
 
    private String processInfo;
 
    private String cancelTime;
 
    private String cancelUserName;
 
    private String cancelUserId;
 
    private Long mark;
 
    public void setId(String id) 
    {
        this.id = id;
    }
 
    public String getId() 
    {
        return id;
    }
    public void setWallName(String wallName) 
    {
        this.wallName = wallName;
    }
 
    public String getWallName() 
    {
        return wallName;
    }
    public void setLongitude(Double longitude) 
    {
        this.longitude = longitude;
    }
 
    public Double getLongitude() 
    {
        return longitude;
    }
    public void setLatitude(Double latitude) 
    {
        this.latitude = latitude;
    }
 
    public Double getLatitude() 
    {
        return latitude;
    }
    public void setDistance(Integer distance) 
    {
        this.distance = distance;
    }
 
    public Integer getDistance() 
    {
        return distance;
    }
    public void setInterval(String interval) 
    {
        this.interval = interval;
    }
 
    public String getInterval() 
    {
        return interval;
    }
    public void setProcessTime(String processTime) 
    {
        this.processTime = processTime;
    }
 
    public String getProcessTime() 
    {
        return processTime;
    }
    public void setProcessMark(String processMark) 
    {
        this.processMark = processMark;
    }
 
    public String getProcessMark() 
    {
        return processMark;
    }
    public void setUserId(String userId) 
    {
        this.userId = userId;
    }
 
    public String getUserId() 
    {
        return userId;
    }
    public void setUserName(String userName) 
    {
        this.userName = userName;
    }
 
    public String getUserName() 
    {
        return userName;
    }
 
    public String getProcessInfo() {
        return processInfo;
    }
 
    public void setProcessInfo(String processInfo) {
        this.processInfo = processInfo;
    }
 
    public String getCancelTime() {
        return cancelTime;
    }
 
    public void setCancelTime(String cancelTime) {
        this.cancelTime = cancelTime;
    }
 
    public Long getMark() {
        return mark;
    }
 
    public void setMark(Long mark) {
        this.mark = mark;
    }
 
    public String getCancelUserName() {
        return cancelUserName;
    }
 
    public void setCancelUserName(String cancelUserName) {
        this.cancelUserName = cancelUserName;
    }
 
    public String getCancelUserId() {
        return cancelUserId;
    }
 
    public void setCancelUserId(String cancelUserId) {
        this.cancelUserId = cancelUserId;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("wallName", getWallName())
            .append("longitude", getLongitude())
            .append("latitude", getLatitude())
            .append("distance", getDistance())
            .append("interval", getInterval())
            .append("processTime", getProcessTime())
            .append("processMark", getProcessMark())
            .append("userId", getUserId())
            .append("userName", getUserName())
            .toString();
    }
}