DNS reject增加策略分组功能

This commit is contained in:
duandongmei
2018-06-22 15:59:47 +08:00
parent 41024e872c
commit b6d0ece058
22 changed files with 169 additions and 45 deletions

View File

@@ -20,6 +20,8 @@ import com.google.gson.annotations.Expose;
* @version V1.0
*/
public class InlineIp {
@Expose
private Integer id;
@Expose
private Integer cfgId;
@Expose
@@ -52,6 +54,8 @@ public class InlineIp {
private Integer isValid;
@Expose
private Date opTime;
@Expose
private Long policyGroup;
/**
* action
* @return action
@@ -276,5 +280,17 @@ public class InlineIp {
public void setService(Integer service) {
this.service = service;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public Long getPolicyGroup() {
return policyGroup;
}
public void setPolicyGroup(Long policyGroup) {
this.policyGroup = policyGroup;
}
}