新增公共查询url以及dns组数据信息方法

This commit is contained in:
tanghao
2019-02-15 15:45:32 +08:00
parent 29215bc96c
commit ba80f58516
5 changed files with 37 additions and 4 deletions

View File

@@ -287,7 +287,20 @@ public class BaseCfg<T> extends BaseEntity<T> implements Cloneable{
protected Integer regionId;//仅用于copy属性使用
protected Integer numberRegionGroupId;//仅用于copy属性使用
protected Integer numberRegionRegionId;//仅用于copy属性使用
private Integer groupType; //url组以及dns组相关功能使用
private Integer udFlag; //url组以及dns组相关功能使用 过滤数据库数据标记
public Integer getGroupType() {
return groupType;
}
public void setGroupType(Integer groupType) {
this.groupType = groupType;
}
public Integer getUdFlag() {
return udFlag;
}
public void setUdFlag(Integer udFlag) {
this.udFlag = udFlag;
}
public Integer getNumberRegionGroupId() {
return numberRegionGroupId;
}