Commit 2a70f9ff authored by 王晓倩's avatar 王晓倩

层端口号数据类型

parent f8da175f
......@@ -45,7 +45,7 @@ public class TStoreyInfo extends BaseEntity
/** 端口号 */
@Excel(name = "端口号")
private Integer fPort;
private String fPort;
/** 状态:0空闲,1运行,2故障,3断电*/
@Excel(name = "状态:0空闲,1运行,2故障,3断电")
......@@ -128,12 +128,12 @@ public class TStoreyInfo extends BaseEntity
this.statusStr = statusStr;
}
public void setfPort(Integer fPort)
public void setfPort(String fPort)
{
this.fPort = fPort;
}
public Integer getfPort()
public String getfPort()
{
return fPort;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment