appip全量下发逻辑:
1、全量下发 (1)、批量下发已下发过的app的app IP配置(走maat配置下发接口) appip批量审核逻辑: 1、审核通过 (1)、批量下发已下发过的app的app IP配置(走ip复用接口) 批量修改app ip配置状态为已下发 (2)、批量下发未下发过的app的app ip配置(走maat下发接口) 批量修改group_info为已下发 批量修改app ip为已下发 2、取消审核通过 (1)、批量失效已下发过的app的app IP配置(走ip复用接口) 批量修改app ip配置状态为失效 (2)、未下发过的app不存在已下发的配置,无需处理取消。
This commit is contained in:
@@ -10,6 +10,7 @@ package com.nis.domain.configuration;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.google.gson.annotations.Expose;
|
||||
@@ -54,6 +55,23 @@ public class BaseCfg<T> extends BaseEntity<T> implements Cloneable{
|
||||
protected String userRegion4;
|
||||
@ExcelField(title="userregion5",sort=7)
|
||||
protected String userRegion5;
|
||||
|
||||
private Map<Integer,Integer> compileGroupMap;
|
||||
protected Integer compileIsIssued;
|
||||
public Integer getCompileIsIssued() {
|
||||
return compileIsIssued;
|
||||
}
|
||||
public void setCompileIsIssued(Integer compileIsIssued) {
|
||||
this.compileIsIssued = compileIsIssued;
|
||||
}
|
||||
|
||||
public Map<Integer, Integer> getCompileGroupMap() {
|
||||
return compileGroupMap;
|
||||
}
|
||||
public void setCompileGroupMap(Map<Integer, Integer> compileGroupMap) {
|
||||
this.compileGroupMap = compileGroupMap;
|
||||
}
|
||||
|
||||
/**
|
||||
* 编译id
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user