配置取消审核通过逻辑完善

This commit is contained in:
zhangwei
2018-05-29 15:37:48 +08:00
parent 11e70875c8
commit aa341445f2
5 changed files with 89 additions and 53 deletions

View File

@@ -76,6 +76,8 @@ public class MaatCfg implements Serializable {
@SerializedName("opTime")
private Date auditTime;
@Expose
private Integer isValid;
@Expose
private List<GroupCfg> groupRelationList;
@Expose
private List<StringCfg> strRegionList;
@@ -630,6 +632,12 @@ public class MaatCfg implements Serializable {
public void setAreaIpRegionList(List<IpCfg> areaIpRegionList) {
this.areaIpRegionList = areaIpRegionList;
}
public Integer getIsValid() {
return isValid;
}
public void setIsValid(Integer isValid) {
this.isValid = isValid;
}
public void initDefaultValue() {
this.doLog=2;
this.doBlackList=1;

View File

@@ -43,6 +43,8 @@ public class ToMaatBean implements Serializable{
@SerializedName("opTime")
private Date auditTime;
@Expose
private Integer opAction;
@Expose
private List<MaatCfg> configCompileList;
public String getVersion() {
@@ -76,6 +78,14 @@ public class ToMaatBean implements Serializable{
public void setConfigCompileList(List<MaatCfg> configCompileList) {
this.configCompileList = configCompileList;
}
public Integer getOpAction() {
return opAction;
}
public void setOpAction(Integer opAction) {
this.opAction = opAction;
}
public static void main(String[] args) {
}