更新流量转发目的地址下发配置参数格式
This commit is contained in:
@@ -2,6 +2,7 @@ package com.nis.domain.callback;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import com.google.gson.annotations.Expose;
|
||||
|
||||
@@ -23,18 +24,13 @@ public class ProxyFileTrafficMirrorCfgAudit {
|
||||
@Expose
|
||||
private String profileName;
|
||||
@Expose
|
||||
private List<String> addrList;
|
||||
private Map<String,List<String>> addrList;
|
||||
@Expose
|
||||
private String addrContent;
|
||||
@Expose
|
||||
private String addrType;
|
||||
@Expose
|
||||
private Long opUser;
|
||||
|
||||
public Long getOpUser() {
|
||||
return opUser;
|
||||
}
|
||||
public void setOpUser(Long opUser) {
|
||||
this.opUser = opUser;
|
||||
}
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
@@ -82,17 +78,29 @@ public class ProxyFileTrafficMirrorCfgAudit {
|
||||
}
|
||||
public void setProfileName(String profileName) {
|
||||
this.profileName = profileName;
|
||||
}
|
||||
}
|
||||
public Map<String, List<String>> getAddrList() {
|
||||
return addrList;
|
||||
}
|
||||
public void setAddrList(Map<String, List<String>> addrList) {
|
||||
this.addrList = addrList;
|
||||
}
|
||||
public String getAddrContent() {
|
||||
return addrContent;
|
||||
}
|
||||
public void setAddrContent(String addrContent) {
|
||||
this.addrContent = addrContent;
|
||||
}
|
||||
public String getAddrType() {
|
||||
return addrType;
|
||||
}
|
||||
public void setAddrType(String addrType) {
|
||||
this.addrType = addrType;
|
||||
}
|
||||
public List<String> getAddrList() {
|
||||
return addrList;
|
||||
public Long getOpUser() {
|
||||
return opUser;
|
||||
}
|
||||
public void setAddrList(List<String> addrList) {
|
||||
this.addrList = addrList;
|
||||
}
|
||||
public void setOpUser(Long opUser) {
|
||||
this.opUser = opUser;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user