2018-11-27 13:52:11 +08:00
|
|
|
package com.nis.domain.dashboard;
|
|
|
|
|
|
|
|
|
|
import com.nis.util.excel.ExcelField;
|
|
|
|
|
|
|
|
|
|
public class TrafficIpActiveStatistic{
|
|
|
|
|
Integer id;
|
|
|
|
|
@ExcelField(title="IP",sort=10)
|
|
|
|
|
String ipAddr;
|
|
|
|
|
@ExcelField(title="Area",sort=20)
|
|
|
|
|
String areaId;
|
|
|
|
|
@ExcelField(title="Number",sort=30)
|
2018-12-04 11:52:21 +08:00
|
|
|
Long linkNum;
|
2018-11-27 13:52:11 +08:00
|
|
|
@ExcelField(title="C2S(Pkt)",sort=40)
|
2018-12-04 11:52:21 +08:00
|
|
|
Long c2sPktNum;
|
2018-11-27 13:52:11 +08:00
|
|
|
@ExcelField(title="S2C(Pkt)",sort=50)
|
2018-12-04 11:52:21 +08:00
|
|
|
Long s2cPktNum;
|
2018-11-27 13:52:11 +08:00
|
|
|
@ExcelField(title="C2S(Byte)",sort=60)
|
2018-12-04 11:52:21 +08:00
|
|
|
Long c2sByteLen;
|
2018-11-27 13:52:11 +08:00
|
|
|
@ExcelField(title="S2C(Byte)",sort=70)
|
2018-12-04 11:52:21 +08:00
|
|
|
Long s2cByteLen;
|
2018-11-27 13:52:11 +08:00
|
|
|
@ExcelField(title="Time",sort=80)
|
|
|
|
|
String statTime;
|
|
|
|
|
|
|
|
|
|
public Integer getId() {
|
|
|
|
|
return id;
|
|
|
|
|
}
|
|
|
|
|
public void setId(Integer id) {
|
|
|
|
|
this.id = id;
|
|
|
|
|
}
|
|
|
|
|
public String getStatTime() {
|
|
|
|
|
return statTime;
|
|
|
|
|
}
|
|
|
|
|
public void setStatTime(String statTime) {
|
|
|
|
|
this.statTime = statTime;
|
|
|
|
|
}
|
|
|
|
|
public TrafficIpActiveStatistic(){
|
|
|
|
|
super();
|
|
|
|
|
}
|
|
|
|
|
public String getIpAddr() {
|
|
|
|
|
return ipAddr;
|
|
|
|
|
}
|
|
|
|
|
public void setIpAddr(String ipAddr) {
|
|
|
|
|
this.ipAddr = ipAddr;
|
|
|
|
|
}
|
|
|
|
|
public String getAreaId() {
|
|
|
|
|
return areaId;
|
|
|
|
|
}
|
|
|
|
|
public void setAreaId(String areaId) {
|
|
|
|
|
this.areaId = areaId;
|
|
|
|
|
}
|
2018-12-04 11:52:21 +08:00
|
|
|
public Long getLinkNum() {
|
2018-11-27 13:52:11 +08:00
|
|
|
return linkNum;
|
|
|
|
|
}
|
2018-12-04 11:52:21 +08:00
|
|
|
public void setLinkNum(Long linkNum) {
|
2018-11-27 13:52:11 +08:00
|
|
|
this.linkNum = linkNum;
|
|
|
|
|
}
|
2018-12-04 11:52:21 +08:00
|
|
|
public Long getC2sPktNum() {
|
2018-11-27 13:52:11 +08:00
|
|
|
return c2sPktNum;
|
|
|
|
|
}
|
2018-12-04 11:52:21 +08:00
|
|
|
public void setC2sPktNum(Long c2sPktNum) {
|
2018-11-27 13:52:11 +08:00
|
|
|
this.c2sPktNum = c2sPktNum;
|
|
|
|
|
}
|
2018-12-04 11:52:21 +08:00
|
|
|
public Long getS2cPktNum() {
|
2018-11-27 13:52:11 +08:00
|
|
|
return s2cPktNum;
|
|
|
|
|
}
|
2018-12-04 11:52:21 +08:00
|
|
|
public void setS2cPktNum(Long s2cPktNum) {
|
2018-11-27 13:52:11 +08:00
|
|
|
this.s2cPktNum = s2cPktNum;
|
|
|
|
|
}
|
2018-12-04 11:52:21 +08:00
|
|
|
public Long getC2sByteLen() {
|
2018-11-27 13:52:11 +08:00
|
|
|
return c2sByteLen;
|
|
|
|
|
}
|
2018-12-04 11:52:21 +08:00
|
|
|
public void setC2sByteLen(Long c2sByteLen) {
|
2018-11-27 13:52:11 +08:00
|
|
|
this.c2sByteLen = c2sByteLen;
|
|
|
|
|
}
|
2018-12-04 11:52:21 +08:00
|
|
|
public Long getS2cByteLen() {
|
2018-11-27 13:52:11 +08:00
|
|
|
return s2cByteLen;
|
|
|
|
|
}
|
2018-12-04 11:52:21 +08:00
|
|
|
public void setS2cByteLen(Long s2cByteLen) {
|
2018-11-27 13:52:11 +08:00
|
|
|
this.s2cByteLen = s2cByteLen;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|