package com.dy.rtuMw.server.local.localProtocol;
|
|
/**
|
* @Author: liurunyu
|
* @Date: 2024/10/15 15:56
|
* @Description
|
*/
|
public class RtuOnLineStateStatisticsVo {
|
public Integer onLineNum;
|
public Integer offLineNum;
|
|
public Integer getOnLineNum() {
|
return onLineNum;
|
}
|
|
public void setOnLineNum(Integer onLineNum) {
|
this.onLineNum = onLineNum;
|
}
|
|
public Integer getOffLineNum() {
|
return offLineNum;
|
}
|
|
public void setOffLineNum(Integer offLineNum) {
|
this.offLineNum = offLineNum;
|
}
|
}
|