IP配置导出提交

This commit is contained in:
wangxin
2018-07-03 14:55:36 +08:00
parent abe373ced3
commit c74e75f306
14 changed files with 224 additions and 31 deletions

View File

@@ -10,6 +10,7 @@ package com.nis.domain.configuration;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import com.nis.util.excel.ExcelField;
/**
* @ClassName: BaseIpConfig.java
@@ -39,15 +40,24 @@ public class BaseIpCfg extends BaseCfg<BaseIpCfg> {
*/
@Expose
@SerializedName("ipType")
@ExcelField(title="ip_type",dictType="IP_TYPE")
protected Integer ipType;
@ExcelField(title="ip_pattern",dictType="IP_PATTERN")
protected Integer ipPattern;
@ExcelField(title="client_ip")
protected String srcIpAddress;
protected String destIpAddress;
protected Integer portPattern;
protected String srcPort;
@ExcelField(title="server_ip")
protected String destIpAddress;
@ExcelField(title="port_pattern",dictType="PORT_PATTERN")
protected Integer portPattern;
@ExcelField(title="client_port")
protected String srcPort;
@ExcelField(title="server_port")
protected String destPort;
protected Long dnsStrategyId;
@ExcelField(title="ir_type",dictType="IR_TYPE")
protected Integer irType;
@ExcelField(title="group_name")
protected String groupName;
/**