|
|
@ -9,7 +9,7 @@ import com.ruoyi.common.core.domain.BaseEntity; |
|
|
|
|
|
|
|
/** |
|
|
|
* 设备离线记录对象 dc_device_offline_record |
|
|
|
* |
|
|
|
* |
|
|
|
* @author ruoyi |
|
|
|
* @date 2024-09-18 |
|
|
|
*/ |
|
|
@ -122,22 +122,25 @@ public class DcDeviceOfflineRecord extends BaseEntity |
|
|
|
private String startTime; |
|
|
|
|
|
|
|
private String endTime; |
|
|
|
/**诊断结果 */ |
|
|
|
@Excel(name = "诊断结果") |
|
|
|
private String diagnostics; |
|
|
|
|
|
|
|
public void setId(Long id) |
|
|
|
public void setId(Long id) |
|
|
|
{ |
|
|
|
this.id = id; |
|
|
|
} |
|
|
|
|
|
|
|
public Long getId() |
|
|
|
public Long getId() |
|
|
|
{ |
|
|
|
return id; |
|
|
|
} |
|
|
|
public void setDeviceId(Long deviceId) |
|
|
|
public void setDeviceId(Long deviceId) |
|
|
|
{ |
|
|
|
this.deviceId = deviceId; |
|
|
|
} |
|
|
|
|
|
|
|
public Long getDeviceId() |
|
|
|
public Long getDeviceId() |
|
|
|
{ |
|
|
|
return deviceId; |
|
|
|
} |
|
|
@ -155,97 +158,97 @@ public class DcDeviceOfflineRecord extends BaseEntity |
|
|
|
this.deviceName = deviceName; |
|
|
|
} |
|
|
|
|
|
|
|
public String getDeviceName() |
|
|
|
public String getDeviceName() |
|
|
|
{ |
|
|
|
return deviceName; |
|
|
|
} |
|
|
|
public void setDeviceType(String deviceType) |
|
|
|
public void setDeviceType(String deviceType) |
|
|
|
{ |
|
|
|
this.deviceType = deviceType; |
|
|
|
} |
|
|
|
|
|
|
|
public String getDeviceType() |
|
|
|
public String getDeviceType() |
|
|
|
{ |
|
|
|
return deviceType; |
|
|
|
} |
|
|
|
public void setStakeMark(String stakeMark) |
|
|
|
public void setStakeMark(String stakeMark) |
|
|
|
{ |
|
|
|
this.stakeMark = stakeMark; |
|
|
|
} |
|
|
|
|
|
|
|
public String getStakeMark() |
|
|
|
public String getStakeMark() |
|
|
|
{ |
|
|
|
return stakeMark; |
|
|
|
} |
|
|
|
public void setDirection(String direction) |
|
|
|
public void setDirection(String direction) |
|
|
|
{ |
|
|
|
this.direction = direction; |
|
|
|
} |
|
|
|
|
|
|
|
public String getDirection() |
|
|
|
public String getDirection() |
|
|
|
{ |
|
|
|
return direction; |
|
|
|
} |
|
|
|
public void setInstallationSite(String installationSite) |
|
|
|
public void setInstallationSite(String installationSite) |
|
|
|
{ |
|
|
|
this.installationSite = installationSite; |
|
|
|
} |
|
|
|
|
|
|
|
public String getInstallationSite() |
|
|
|
public String getInstallationSite() |
|
|
|
{ |
|
|
|
return installationSite; |
|
|
|
} |
|
|
|
public void setDeviceIp(String deviceIp) |
|
|
|
public void setDeviceIp(String deviceIp) |
|
|
|
{ |
|
|
|
this.deviceIp = deviceIp; |
|
|
|
} |
|
|
|
|
|
|
|
public String getDeviceIp() |
|
|
|
public String getDeviceIp() |
|
|
|
{ |
|
|
|
return deviceIp; |
|
|
|
} |
|
|
|
public void setFacilitiesType(String facilitiesType) |
|
|
|
public void setFacilitiesType(String facilitiesType) |
|
|
|
{ |
|
|
|
this.facilitiesType = facilitiesType; |
|
|
|
} |
|
|
|
|
|
|
|
public String getFacilitiesType() |
|
|
|
public String getFacilitiesType() |
|
|
|
{ |
|
|
|
return facilitiesType; |
|
|
|
} |
|
|
|
public void setChildType(String childType) |
|
|
|
public void setChildType(String childType) |
|
|
|
{ |
|
|
|
this.childType = childType; |
|
|
|
} |
|
|
|
|
|
|
|
public String getChildType() |
|
|
|
public String getChildType() |
|
|
|
{ |
|
|
|
return childType; |
|
|
|
} |
|
|
|
public void setLongitude(String longitude) |
|
|
|
public void setLongitude(String longitude) |
|
|
|
{ |
|
|
|
this.longitude = longitude; |
|
|
|
} |
|
|
|
|
|
|
|
public String getLongitude() |
|
|
|
public String getLongitude() |
|
|
|
{ |
|
|
|
return longitude; |
|
|
|
} |
|
|
|
public void setLatitude(String latitude) |
|
|
|
public void setLatitude(String latitude) |
|
|
|
{ |
|
|
|
this.latitude = latitude; |
|
|
|
} |
|
|
|
|
|
|
|
public String getLatitude() |
|
|
|
public String getLatitude() |
|
|
|
{ |
|
|
|
return latitude; |
|
|
|
} |
|
|
|
public void setStatus(String status) |
|
|
|
public void setStatus(String status) |
|
|
|
{ |
|
|
|
this.status = status; |
|
|
|
} |
|
|
|
|
|
|
|
public String getStatus() |
|
|
|
public String getStatus() |
|
|
|
{ |
|
|
|
return status; |
|
|
|
} |
|
|
@ -266,6 +269,14 @@ public class DcDeviceOfflineRecord extends BaseEntity |
|
|
|
this.endTime = endTime; |
|
|
|
} |
|
|
|
|
|
|
|
public String getDiagnostics() { |
|
|
|
return diagnostics; |
|
|
|
} |
|
|
|
|
|
|
|
public void setDiagnostics(String diagnostics) { |
|
|
|
this.diagnostics = diagnostics; |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public String toString() { |
|
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
|
|
@ -286,6 +297,7 @@ public class DcDeviceOfflineRecord extends BaseEntity |
|
|
|
.append("createTime", getCreateTime()) |
|
|
|
.append("updateTime", getUpdateTime()) |
|
|
|
.append("updateBy", getUpdateBy()) |
|
|
|
.append("diagnostics", getDiagnostics()) |
|
|
|
.toString(); |
|
|
|
} |
|
|
|
} |
|
|
|