Merge branch 'feature-traffic-log' of https://git.mesalab.cn/K18_NTCS_WEB/NTC.git into feature-traffic-log

This commit is contained in:
zhangwei
2019-01-26 20:20:40 +06:00
16 changed files with 1019 additions and 8 deletions

View File

@@ -0,0 +1,31 @@
package com.nis.domain;
/**
* Created by dell on 2018-8-30.
*/
public class Nets {
private String StartIP;
private String EndIP;
private String NetMask;
public String getStartIP() {
return StartIP;
}
public void setStartIP(String startIP) {
StartIP = startIP;
}
public String getEndIP() {
return EndIP;
}
public void setEndIP(String endIP) {
EndIP = endIP;
}
public String getNetMask() {
return NetMask;
}
public void setNetMask(String netMask) {
NetMask = netMask;
}
}