46 lines
1.2 KiB
Java
46 lines
1.2 KiB
Java
package com.nis.domain.callback;
|
|
|
|
|
|
import java.util.Arrays;
|
|
|
|
import com.nis.domain.configuration.BaseCfg;
|
|
import com.nis.util.excel.ExcelField;
|
|
|
|
import antlr.collections.List;
|
|
|
|
public class ProxyFileTrafficMirrorCfg extends BaseCfg<ProxyFileTrafficMirrorCfg>{
|
|
|
|
private static final long serialVersionUID = -5895958073449509268L;
|
|
public String indexTable = "pxy_profile_traffic_mirror";//对应表名
|
|
@ExcelField(title="address_name",sort=1)
|
|
private String cfgDesc;//名称,辅助记忆
|
|
@ExcelField(title="mirror_addr_list",sort=3)
|
|
private String addrList;//目标表示列表
|
|
@ExcelField(title="mirror_addr_type",sort=2)
|
|
private String addrType;//目标表示类型
|
|
public String getIndexTable() {
|
|
return indexTable;
|
|
}
|
|
public void setIndexTable(String indexTable) {
|
|
this.indexTable = indexTable;
|
|
}
|
|
public String getCfgDesc() {
|
|
return cfgDesc;
|
|
}
|
|
public void setCfgDesc(String cfgDesc) {
|
|
this.cfgDesc = cfgDesc;
|
|
}
|
|
public String getAddrList() {
|
|
return addrList;
|
|
}
|
|
public void setAddrList(String addrList) {
|
|
this.addrList = addrList;
|
|
}
|
|
public String getAddrType() {
|
|
return addrType;
|
|
}
|
|
public void setAddrType(String addrType) {
|
|
this.addrType = addrType;
|
|
}
|
|
}
|