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();
|
}
|
}
|