提交IP复用地址池配置功能代码

This commit is contained in:
zhangwei
2018-07-01 16:08:55 +08:00
parent fff7aec3f2
commit 6857cf2660
8 changed files with 1388 additions and 0 deletions

View File

@@ -0,0 +1,103 @@
package com.nis.domain.configuration;
import java.util.Date;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
/**
* IP复用地址池配置
* @author dell
*
*/
public class IpMultiplexPoolCfg extends BaseCfg<IpMultiplexPoolCfg> {
/**
*
*/
private static final long serialVersionUID = -5902468971425910528L;
@Expose
@SerializedName("cfgId")
private Integer compileId;
@Expose
@SerializedName("addType")
private String ipType;
@Expose
private Integer protocol;
@Expose
@SerializedName("ip")
private String srcIpAddress;
@Expose
private String port;
@Expose
private Integer direction;
@Expose
private String userRegion;
@Expose
private Integer location;
@Expose
private Integer policyGroup;
private String groupName;
public Integer getCompileId() {
return compileId;
}
public void setCompileId(Integer compileId) {
this.compileId = compileId;
}
public String getIpType() {
return ipType;
}
public void setIpType(String ipType) {
this.ipType = ipType;
}
public Integer getProtocol() {
return protocol;
}
public void setProtocol(Integer protocol) {
this.protocol = protocol;
}
public String getSrcIpAddress() {
return srcIpAddress;
}
public void setSrcIpAddress(String srcIpAddress) {
this.srcIpAddress = srcIpAddress;
}
public String getPort() {
return port;
}
public void setPort(String port) {
this.port = port;
}
public Integer getDirection() {
return direction;
}
public void setDirection(Integer direction) {
this.direction = direction;
}
public String getUserRegion() {
return userRegion;
}
public void setUserRegion(String userRegion) {
this.userRegion = userRegion;
}
public Integer getLocation() {
return location;
}
public void setLocation(Integer location) {
this.location = location;
}
public Integer getPolicyGroup() {
return policyGroup;
}
public void setPolicyGroup(Integer policyGroup) {
this.policyGroup = policyGroup;
}
public String getGroupName() {
return groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
}