package com.gkhy.safePlatform.config.serverNode;
|
|
/**
|
* 配置文件 - 服务节点内外网IP端口映射配置类
|
*/
|
public class ServerNodeEntry {
|
|
//外网暴露IP
|
private String outIp;
|
|
//外网暴露端口
|
private Integer outPort;
|
|
//内网暴露端口
|
private Integer insidePort;
|
|
public String getOutIp() {
|
return outIp;
|
}
|
|
public void setOutIp(String outIp) {
|
this.outIp = outIp;
|
}
|
|
public Integer getOutPort() {
|
return outPort;
|
}
|
|
public void setOutPort(Integer outPort) {
|
this.outPort = outPort;
|
}
|
|
public Integer getInsidePort() {
|
return insidePort;
|
}
|
|
public void setInsidePort(Integer insidePort) {
|
this.insidePort = insidePort;
|
}
|
}
|