You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
219 lines
5.2 KiB
219 lines
5.2 KiB
package com.zc.business.domain;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import com.ruoyi.common.annotation.Excel;
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
/**
|
|
* @author mengff
|
|
* @Date 2024/01/04
|
|
*/
|
|
public class Status {
|
|
public String getDeviceIp() {
|
|
return deviceIp;
|
|
}
|
|
|
|
public void setDeviceIp(String deviceIp) {
|
|
this.deviceIp = deviceIp;
|
|
}
|
|
public LocalDateTime getStartTime() {
|
|
return startTime;
|
|
}
|
|
|
|
public Status(long id, String deviceNo, String deviceName, int deviceStatus, LocalDateTime time, LocalDateTime startTime, String deviceIp, String successRate, String lostRate, String direction, String production, String model, String network, String content, String type) {
|
|
this.id = id;
|
|
this.deviceNo = deviceNo;
|
|
this.deviceName = deviceName;
|
|
this.deviceStatus = deviceStatus;
|
|
this.time = time;
|
|
this.startTime = startTime;
|
|
this.deviceIp = deviceIp;
|
|
this.successRate = successRate;
|
|
this.lostRate = lostRate;
|
|
this.direction = direction;
|
|
this.production = production;
|
|
this.model = model;
|
|
this.network = network;
|
|
this.content = content;
|
|
this.type = type;
|
|
}
|
|
|
|
public void setStartTime(LocalDateTime startTime) {
|
|
this.startTime = startTime;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "Status{" +
|
|
"id=" + id +
|
|
", deviceNo='" + deviceNo + '\'' +
|
|
", deviceName='" + deviceName + '\'' +
|
|
", deviceStatus=" + deviceStatus +
|
|
", time=" + time +
|
|
", startTime=" + startTime +
|
|
", deviceIp='" + deviceIp + '\'' +
|
|
", successRate='" + successRate + '\'' +
|
|
", lostRate='" + lostRate + '\'' +
|
|
", direction='" + direction + '\'' +
|
|
", production='" + production + '\'' +
|
|
", model='" + model + '\'' +
|
|
", network='" + network + '\'' +
|
|
", content='" + content + '\'' +
|
|
", type='" + type + '\'' +
|
|
'}';
|
|
}
|
|
|
|
public LocalDateTime getTime() {
|
|
return time;
|
|
}
|
|
|
|
public void setTime(LocalDateTime time) {
|
|
this.time = time;
|
|
}
|
|
|
|
public String getDeviceNo() {
|
|
return deviceNo;
|
|
}
|
|
|
|
public Status(long id, String deviceNo, String deviceName, int deviceStatus) {
|
|
this.id = id;
|
|
this.deviceNo = deviceNo;
|
|
this.deviceName = deviceName;
|
|
this.deviceStatus = deviceStatus;
|
|
}
|
|
|
|
public Status() {
|
|
}
|
|
|
|
public void setDeviceNo(String deviceNo) {
|
|
this.deviceNo = deviceNo;
|
|
}
|
|
|
|
public String getDeviceName() {
|
|
return deviceName;
|
|
}
|
|
|
|
public void setDeviceName(String deviceName) {
|
|
this.deviceName = deviceName;
|
|
}
|
|
|
|
public int getDeviceStatus() {
|
|
return deviceStatus;
|
|
}
|
|
|
|
public void setDeviceStatus(int deviceStatus) {
|
|
this.deviceStatus = deviceStatus;
|
|
}
|
|
|
|
private long id;
|
|
@Excel(name = "设备桩号")
|
|
|
|
private String deviceNo;
|
|
|
|
@Excel(name = "设备类型")
|
|
private String deviceName;
|
|
|
|
@Excel(name = "状态")
|
|
private int deviceStatus;
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@JsonFormat(pattern ="yyyy-MM-dd HH:mm:ss")
|
|
@Excel(name = "监测时间", width = 30, dateFormat = "yyyy-MM-dd")
|
|
private LocalDateTime time;
|
|
|
|
public String getSuccessRate() {
|
|
return successRate;
|
|
}
|
|
|
|
public void setSuccessRate(String successRate) {
|
|
this.successRate = successRate;
|
|
}
|
|
|
|
public String getLostRate() {
|
|
return lostRate;
|
|
}
|
|
|
|
public void setLostRate(String lostRate) {
|
|
this.lostRate = lostRate;
|
|
}
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@JsonFormat(pattern ="yyyy-MM-dd HH:mm:ss")
|
|
private LocalDateTime startTime;
|
|
@Excel(name = "设备IP")
|
|
|
|
private String deviceIp;
|
|
|
|
private String successRate;
|
|
|
|
private String lostRate;
|
|
@Excel(name = "方向")
|
|
|
|
private String direction;
|
|
@Excel(name = "厂家")
|
|
|
|
private String production;
|
|
|
|
public String getDirection() {
|
|
return direction;
|
|
}
|
|
|
|
public void setDirection(String direction) {
|
|
this.direction = direction;
|
|
}
|
|
|
|
public String getProduction() {
|
|
return production;
|
|
}
|
|
|
|
public void setProduction(String production) {
|
|
this.production = production;
|
|
}
|
|
|
|
public String getModel() {
|
|
return model;
|
|
}
|
|
|
|
public void setModel(String model) {
|
|
this.model = model;
|
|
}
|
|
|
|
public String getNetwork() {
|
|
return network;
|
|
}
|
|
|
|
public void setNetwork(String network) {
|
|
this.network = network;
|
|
}
|
|
|
|
public String getContent() {
|
|
return content;
|
|
}
|
|
|
|
public void setContent(String content) {
|
|
this.content = content;
|
|
}
|
|
|
|
@Excel(name = "型号")
|
|
|
|
private String model;
|
|
|
|
public String getType() {
|
|
return type;
|
|
}
|
|
|
|
public void setType(String type) {
|
|
this.type = type;
|
|
}
|
|
|
|
@Excel(name = "网段")
|
|
|
|
private String network;
|
|
|
|
private String content;
|
|
|
|
@Excel(name = "类型")
|
|
|
|
private String type;
|
|
|
|
}
|
|
|