This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
galaxy-k18-galaxy-service/src/main/java/com/nis/domain/restful/dashboard/TrafficHttpStatistic.java

129 lines
2.3 KiB
Java
Raw Normal View History

2018-07-13 19:39:04 +08:00
package com.nis.domain.restful.dashboard;
import java.util.Date;
public class TrafficHttpStatistic {
private Integer statId;
private Integer webType;
private Integer webId;
private Long c2sPktNum;
2018-07-13 19:39:04 +08:00
private Long s2cPktNum;
2018-07-13 19:39:04 +08:00
private Long c2sByteLen;
2018-07-13 19:39:04 +08:00
private Long s2cByteLen;
2018-07-13 19:39:04 +08:00
private Date statTime;
// 自定义字段
private Long count;
private Long pktNum;
private Long byteLen;
private Integer websiteServiceId;//网站id
2018-07-13 19:39:04 +08:00
public Integer getWesiteServiceId() {
return websiteServiceId;
}
public void setWebsiteServiceId(Integer websiteServiceId) {
this.websiteServiceId = websiteServiceId;
}
2018-07-13 19:39:04 +08:00
public Integer getStatId() {
return statId;
}
public void setStatId(Integer statId) {
this.statId = statId;
}
public Integer getWebType() {
return webType;
}
public void setWebType(Integer webType) {
this.webType = webType;
}
public Integer getWebId() {
return webId;
}
public void setWebId(Integer webId) {
this.webId = webId;
}
public Long getC2sPktNum() {
return c2sPktNum;
}
2018-07-13 19:39:04 +08:00
public void setC2sPktNum(Long c2sPktNum) {
this.c2sPktNum = c2sPktNum;
}
2018-07-13 19:39:04 +08:00
public Long getS2cPktNum() {
return s2cPktNum;
}
2018-07-13 19:39:04 +08:00
public void setS2cPktNum(Long s2cPktNum) {
this.s2cPktNum = s2cPktNum;
}
2018-07-13 19:39:04 +08:00
public Long getC2sByteLen() {
return c2sByteLen;
}
2018-07-13 19:39:04 +08:00
public void setC2sByteLen(Long c2sByteLen) {
this.c2sByteLen = c2sByteLen;
}
2018-07-13 19:39:04 +08:00
public Long getS2cByteLen() {
return s2cByteLen;
}
2018-07-13 19:39:04 +08:00
public void setS2cByteLen(Long s2cByteLen) {
this.s2cByteLen = s2cByteLen;
}
public Long getCount() {
return count;
}
public void setCount(Long count) {
this.count = count;
}
public Long getPktNum() {
return pktNum;
}
public void setPktNum(Long pktNum) {
this.pktNum = pktNum;
}
public Long getByteLen() {
return byteLen;
}
public void setByteLen(Long byteLen) {
this.byteLen = byteLen;
}
public Integer getWebsiteServiceId() {
return websiteServiceId;
}
2018-07-13 19:39:04 +08:00
public Date getStatTime() {
2018-07-13 19:39:04 +08:00
return statTime;
}
public void setStatTime(Date statTime) {
this.statTime = statTime;
}
}