配置取消审核通过逻辑完善
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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) {
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user