‘liusuyi’
2023-08-19 53e14c1919c4a3112f963689d0ce75fa08831021
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
package com.ruoyi.device.external.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_equip_external
 *
 * @author ard
 * @date 2023-07-07
 */
public class ArdEquipExternal extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** id */
    private String id;
 
    /** 名称 */
    @Excel(name = "名称")
    private String name;
 
    /** 设备类型 */
    @Excel(name = "设备类型")
    private String type;
 
    /** 厂商 */
    @Excel(name = "厂商")
    private String factory;
 
    /** ip */
    @Excel(name = "ip")
    private String ip;
 
    /** 端口 */
    @Excel(name = "端口")
    private Integer port;
 
    /** 用户名 */
    private String username;
 
    /** 密码 */
    private String password;
 
    /** 经度 */
    @Excel(name = "经度")
    private Double longitude;
 
    /** 纬度 */
    @Excel(name = "纬度")
    private Double latitude;
 
    /** 安装高度 */
    @Excel(name = "安装高度")
    private Double altitude;
 
    /** 部门id */
    @Excel(name = "部门id")
    private Integer deptId;
 
    /** 用户id */
    @Excel(name = "用户id")
    private String userId;
 
    public void setId(String id)
    {
        this.id = id;
    }
 
    public String getId()
    {
        return id;
    }
    public void setName(String name)
    {
        this.name = name;
    }
 
    public String getName()
    {
        return name;
    }
    public void setType(String type)
    {
        this.type = type;
    }
 
    public String getType()
    {
        return type;
    }
    public void setFactory(String factory)
    {
        this.factory = factory;
    }
 
    public String getFactory()
    {
        return factory;
    }
    public void setIp(String ip)
    {
        this.ip = ip;
    }
 
    public String getIp()
    {
        return ip;
    }
    public void setPort(Integer port)
    {
        this.port = port;
    }
 
    public Integer getPort()
    {
        return port;
    }
    public void setUsername(String username)
    {
        this.username = username;
    }
 
    public String getUsername()
    {
        return username;
    }
    public void setPassword(String password)
    {
        this.password = password;
    }
 
    public String getPassword()
    {
        return password;
    }
    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 setAltitude(Double altitude)
    {
        this.altitude = altitude;
    }
 
    public Double getAltitude()
    {
        return altitude;
    }
    public void setDeptId(Integer deptId)
    {
        this.deptId = deptId;
    }
 
    public Integer getDeptId()
    {
        return deptId;
    }
    public void setUserId(String userId)
    {
        this.userId = userId;
    }
 
    public String getUserId()
    {
        return userId;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
                .append("id", getId())
                .append("name", getName())
                .append("type", getType())
                .append("factory", getFactory())
                .append("ip", getIp())
                .append("port", getPort())
                .append("username", getUsername())
                .append("password", getPassword())
                .append("longitude", getLongitude())
                .append("latitude", getLatitude())
                .append("altitude", getAltitude())
                .append("deptId", getDeptId())
                .append("userId", getUserId())
                .append("createBy", getCreateBy())
                .append("createTime", getCreateTime())
                .append("updateBy", getUpdateBy())
                .append("updateTime", getUpdateTime())
                .toString();
    }
}