修改串联设备端口告警表中port的类型

This commit is contained in:
renkaige
2019-02-20 17:25:02 +08:00
parent ea2a653d58
commit 6269991f79
2 changed files with 4 additions and 4 deletions

View File

@@ -15,7 +15,7 @@ public class TrafficSeriesDevicePortInfo implements Serializable {
@JsonIgnore
private long id;
private String area;
private Integer port;
private String port;
private String status;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@ApiModelProperty(value = "commitTime", notes = "时间")
@@ -37,11 +37,11 @@ public class TrafficSeriesDevicePortInfo implements Serializable {
this.area = area;
}
public Integer getPort() {
public String getPort() {
return port;
}
public void setPort(Integer port) {
public void setPort(String port) {
this.port = port;
}