性质、各国家目的IP、运营商局点报表页面提交.

This commit is contained in:
zhangwenqing
2018-07-10 13:25:41 +08:00
parent cd954463f5
commit 86fa5f0000
10 changed files with 527 additions and 92 deletions

View File

@@ -0,0 +1,16 @@
package com.nis.domain.report;
public class NtcAttrTypeReport extends BaseReport<NtcAttrTypeReport>{
private static final long serialVersionUID = -4537371833119510177L;
private Integer attrType;
public Integer getAttrType() {
return attrType;
}
public void setAttrType(Integer attrType) {
this.attrType = attrType;
}
}

View File

@@ -0,0 +1,16 @@
package com.nis.domain.report;
public class NtcDestIpReport extends BaseReport<NtcDestIpReport>{
private static final long serialVersionUID = 8905927100915123026L;
private String destCountry;
public String getDestCountry() {
return destCountry;
}
public void setDestCountry(String destCountry) {
this.destCountry = destCountry;
}
}

View File

@@ -0,0 +1,16 @@
package com.nis.domain.report;
public class NtcEntranceReport extends BaseReport<NtcEntranceReport>{
private static final long serialVersionUID = -5042608104505377779L;
private Integer entranceId;
public Integer getEntranceId() {
return entranceId;
}
public void setEntranceId(Integer entranceId) {
this.entranceId = entranceId;
}
}