|
|
|
@ -47,4 +47,22 @@ public class LightOnModel implements Serializable {
|
|
|
|
|
@ApiParam("状态")
|
|
|
|
|
private Integer status;
|
|
|
|
|
|
|
|
|
|
@ApiParam("控制器ip")
|
|
|
|
|
private String ip;
|
|
|
|
|
|
|
|
|
|
@ApiParam("端口")
|
|
|
|
|
private String port;
|
|
|
|
|
|
|
|
|
|
@ApiParam("控制器编号")
|
|
|
|
|
private String controlNo;
|
|
|
|
|
|
|
|
|
|
public LightOnModel() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public LightOnModel(Integer tagNo, String ip, String port, String controlNo) {
|
|
|
|
|
this.tagNo = tagNo;
|
|
|
|
|
this.ip = ip;
|
|
|
|
|
this.port = port;
|
|
|
|
|
this.controlNo = controlNo;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|