(1)BaseStringCfg 类修改为BaseStringCfg<T>,加入泛型。所有继承BaseStringCfg的类均已经修改泛型。
(2)HttpUrlCfg新增ratelimit一列,用于域名限速。 (3)域名限速新增/修改增加限速比例一列,列表展示新增限速比例一列。 (4)审核自定义域域名拦截与域名限速进行调整。 (5)删除MultipleCfg以及相关的dao,service (6StringCfgService重命名为DomainService,其不具备字符串配置都能调用的功能
This commit is contained in:
@@ -18,7 +18,7 @@ import com.google.gson.annotations.SerializedName;
|
||||
* @date 2018年2月5日 下午5:26:02
|
||||
* @version V1.0
|
||||
*/
|
||||
public class AppStringCfg extends BaseStringCfg {
|
||||
public class AppStringCfg extends BaseStringCfg<AppStringCfg> {
|
||||
|
||||
private static final String tableName="app_string_cfg";
|
||||
/**
|
||||
|
||||
@@ -7,7 +7,7 @@ package com.nis.domain.configuration;
|
||||
* @date 2018年2月6日 上午8:29:26
|
||||
* @version V1.0
|
||||
*/
|
||||
public class AvContUrlCfg extends BaseStringCfg {
|
||||
public class AvContUrlCfg extends BaseStringCfg<AvContUrlCfg> {
|
||||
|
||||
/**
|
||||
*
|
||||
|
||||
@@ -7,7 +7,7 @@ package com.nis.domain.configuration;
|
||||
* @date 2018年2月6日 上午8:29:26
|
||||
* @version V1.0
|
||||
*/
|
||||
public class AvPicUrlCfg extends BaseStringCfg {
|
||||
public class AvPicUrlCfg extends BaseStringCfg<AvPicUrlCfg> {
|
||||
|
||||
/**
|
||||
*
|
||||
|
||||
@@ -8,7 +8,7 @@ package com.nis.domain.configuration;
|
||||
* @date 2018年2月6日 上午8:18:55
|
||||
* @version V1.0
|
||||
*/
|
||||
public class AvVoipAccountCfg extends BaseStringCfg{
|
||||
public class AvVoipAccountCfg extends BaseStringCfg<AvVoipAccountCfg>{
|
||||
|
||||
|
||||
private static final long serialVersionUID = -7398698517584394431L;
|
||||
|
||||
@@ -8,8 +8,6 @@
|
||||
*/
|
||||
package com.nis.domain.configuration;
|
||||
|
||||
import org.apache.commons.lang3.StringEscapeUtils;
|
||||
|
||||
import com.google.gson.annotations.Expose;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import com.nis.util.excel.ExcelField;
|
||||
@@ -21,7 +19,7 @@ import com.nis.util.excel.ExcelField;
|
||||
* @date 2018年2月5日 下午5:26:02
|
||||
* @version V1.0
|
||||
*/
|
||||
public class BaseStringCfg extends BaseCfg<BaseStringCfg> {
|
||||
public class BaseStringCfg<T> extends BaseCfg<T> {
|
||||
|
||||
/**
|
||||
* @Fields serialVersionUID:TODO(用一句话描述这个变量表示什么)
|
||||
@@ -37,8 +35,8 @@ public class BaseStringCfg extends BaseCfg<BaseStringCfg> {
|
||||
@SerializedName("keywords")
|
||||
@ExcelField(title="key_word")
|
||||
protected String cfgKeywords;
|
||||
|
||||
protected String cfgKeywordsShowName;
|
||||
|
||||
/**
|
||||
* @param cfgKeywords the cfgKeywords to set
|
||||
*/
|
||||
|
||||
@@ -15,7 +15,7 @@ package com.nis.domain.configuration;
|
||||
* @date 2018年2月6日 上午10:36:22
|
||||
* @version V1.0
|
||||
*/
|
||||
public class ByteFeaturesCfg extends BaseStringCfg {
|
||||
public class ByteFeaturesCfg extends BaseStringCfg<ByteFeaturesCfg> {
|
||||
/**
|
||||
* @Fields serialVersionUID:TODO(用一句话描述这个变量表示什么)
|
||||
*
|
||||
|
||||
@@ -15,7 +15,7 @@ package com.nis.domain.configuration;
|
||||
* @date 2018年2月6日 上午8:18:55
|
||||
* @version V1.0
|
||||
*/
|
||||
public class FtpKeywordCfg extends BaseStringCfg{
|
||||
public class FtpKeywordCfg extends BaseStringCfg<FtpKeywordCfg>{
|
||||
private static final String tableName="ftp_keyword_cfg";
|
||||
/**
|
||||
* @Fields serialVersionUID:TODO(用一句话描述这个变量表示什么)
|
||||
|
||||
@@ -15,7 +15,7 @@ package com.nis.domain.configuration;
|
||||
* @date 2018年2月5日 下午5:33:05
|
||||
* @version V1.0
|
||||
*/
|
||||
public class HttpBodyCfg extends BaseStringCfg {
|
||||
public class HttpBodyCfg extends BaseStringCfg<HttpBodyCfg> {
|
||||
/**
|
||||
* @Fields serialVersionUID:TODO(用一句话描述这个变量表示什么)
|
||||
*
|
||||
|
||||
@@ -15,7 +15,7 @@ package com.nis.domain.configuration;
|
||||
* @date 2018年2月5日 下午5:33:05
|
||||
* @version V1.0
|
||||
*/
|
||||
public class HttpDomainCfg extends BaseStringCfg {
|
||||
public class HttpDomainCfg extends BaseStringCfg<HttpDomainCfg> {
|
||||
/**
|
||||
* @Fields serialVersionUID:TODO(用一句话描述这个变量表示什么)
|
||||
*
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
*/
|
||||
package com.nis.domain.configuration;
|
||||
|
||||
import com.nis.domain.Page;
|
||||
import com.nis.util.Constants;
|
||||
|
||||
/**
|
||||
@@ -17,8 +18,23 @@ import com.nis.util.Constants;
|
||||
* @date 2018年2月5日 下午5:33:05
|
||||
* @version V1.0
|
||||
*/
|
||||
public class HttpUrlCfg extends BaseStringCfg {
|
||||
public class HttpUrlCfg extends BaseStringCfg<HttpUrlCfg> {
|
||||
private static final String tableName="http_url_cfg";
|
||||
private Integer ratelimit;
|
||||
/**
|
||||
* ratelimit
|
||||
* @return ratelimit
|
||||
*/
|
||||
|
||||
public Integer getRatelimit() {
|
||||
return ratelimit;
|
||||
}
|
||||
/**
|
||||
* @param ratelimit the ratelimit to set
|
||||
*/
|
||||
public void setRatelimit(Integer ratelimit) {
|
||||
this.ratelimit = ratelimit;
|
||||
}
|
||||
/**
|
||||
* @Fields serialVersionUID:TODO(用一句话描述这个变量表示什么)
|
||||
*
|
||||
@@ -44,5 +60,4 @@ public class HttpUrlCfg extends BaseStringCfg {
|
||||
public static String getTablename() {
|
||||
return tableName;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -15,7 +15,7 @@ package com.nis.domain.configuration;
|
||||
* @date 2018年2月6日 上午10:30:46
|
||||
* @version V1.0
|
||||
*/
|
||||
public class HttpsContentReplaceCfg extends BaseStringCfg {
|
||||
public class HttpsContentReplaceCfg extends BaseStringCfg<HttpsContentReplaceCfg> {
|
||||
|
||||
/**
|
||||
* @Fields serialVersionUID:TODO(用一句话描述这个变量表示什么)
|
||||
|
||||
@@ -15,7 +15,7 @@ package com.nis.domain.configuration;
|
||||
* @date 2018年2月6日 上午10:28:42
|
||||
* @version V1.0
|
||||
*/
|
||||
public class HttpsUrlCfg extends BaseStringCfg {
|
||||
public class HttpsUrlCfg extends BaseStringCfg<HttpsUrlCfg> {
|
||||
/**
|
||||
* @Fields serialVersionUID:TODO(用一句话描述这个变量表示什么)
|
||||
*
|
||||
|
||||
@@ -15,7 +15,7 @@ package com.nis.domain.configuration;
|
||||
* @date 2018年2月6日 上午8:42:42
|
||||
* @version V1.0
|
||||
*/
|
||||
public class L2tpUrlCfg extends BaseStringCfg {
|
||||
public class L2tpUrlCfg extends BaseStringCfg<L2tpUrlCfg> {
|
||||
/**
|
||||
* @Fields serialVersionUID:TODO(用一句话描述这个变量表示什么)
|
||||
*
|
||||
|
||||
@@ -15,7 +15,7 @@ package com.nis.domain.configuration;
|
||||
* @date 2018年2月6日 上午9:48:36
|
||||
* @version V1.0
|
||||
*/
|
||||
public class MmsUrlCfg extends BaseStringCfg{
|
||||
public class MmsUrlCfg extends BaseStringCfg<MmsUrlCfg>{
|
||||
/**
|
||||
* @Fields serialVersionUID:TODO(用一句话描述这个变量表示什么)
|
||||
*
|
||||
|
||||
@@ -1,186 +0,0 @@
|
||||
/**
|
||||
*@Title: MultipleCfg.java
|
||||
*@Package com.nis.domain.configuration
|
||||
*@Description TODO
|
||||
*@author dell
|
||||
*@date 2018年3月13日 上午8:59:32
|
||||
*@version 版本号
|
||||
*/
|
||||
package com.nis.domain.configuration;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* @ClassName: MultipleCfg.java
|
||||
* @Description: TODO
|
||||
* @author (dell)
|
||||
* @date 2018年3月13日 上午8:59:32
|
||||
* @version V1.0
|
||||
*/
|
||||
public class MultipleCfg extends BaseCfg<MultipleCfg> {
|
||||
/**
|
||||
* @Fields serialVersionUID:TODO(用一句话描述这个变量表示什么)
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
private static final long serialVersionUID = -8369567908781421920L;
|
||||
/**
|
||||
* 配置关系表,一个compileId 中有哪些表存了数据
|
||||
*/
|
||||
private MultipleCfgRelation relation;
|
||||
private String mainTable;
|
||||
private String mainTableType;
|
||||
private String mainTableDesc;
|
||||
private List<TableBean> otherTables;//key 表名,value 类型
|
||||
//ip配置
|
||||
private Map<String,BaseIpCfg> ipCfg;
|
||||
//字符串配置
|
||||
private Map<String,BaseStringCfg> stringCfg;
|
||||
//数值类配置
|
||||
private Map<String,NumBoundaryCfg> numCfg;
|
||||
//增强字符串配置
|
||||
private Map<String,ComplexkeywordCfg> complexCfg;
|
||||
//地域配置
|
||||
private AreaIpCfg areaIpCfg;
|
||||
/**
|
||||
* mainTable
|
||||
* @return mainTable
|
||||
*/
|
||||
|
||||
public String getMainTable() {
|
||||
return mainTable;
|
||||
}
|
||||
/**
|
||||
* @param mainTable the mainTable to set
|
||||
*/
|
||||
public void setMainTable(String mainTable) {
|
||||
this.mainTable = mainTable;
|
||||
}
|
||||
/**
|
||||
* areaIpCfg
|
||||
* @return areaIpCfg
|
||||
*/
|
||||
|
||||
public AreaIpCfg getAreaIpCfg() {
|
||||
return areaIpCfg;
|
||||
}
|
||||
/**
|
||||
* @param areaIpCfg the areaIpCfg to set
|
||||
*/
|
||||
public void setAreaIpCfg(AreaIpCfg areaIpCfg) {
|
||||
this.areaIpCfg = areaIpCfg;
|
||||
}
|
||||
/**
|
||||
* ipCfg
|
||||
* @return ipCfg
|
||||
*/
|
||||
|
||||
public Map<String, BaseIpCfg> getIpCfg() {
|
||||
return ipCfg;
|
||||
}
|
||||
/**
|
||||
* @param ipCfg the ipCfg to set
|
||||
*/
|
||||
public void setIpCfg(Map<String, BaseIpCfg> ipCfg) {
|
||||
this.ipCfg = ipCfg;
|
||||
}
|
||||
/**
|
||||
* stringCfg
|
||||
* @return stringCfg
|
||||
*/
|
||||
|
||||
public Map<String, BaseStringCfg> getStringCfg() {
|
||||
return stringCfg;
|
||||
}
|
||||
/**
|
||||
* @param stringCfg the stringCfg to set
|
||||
*/
|
||||
public void setStringCfg(Map<String, BaseStringCfg> stringCfg) {
|
||||
this.stringCfg = stringCfg;
|
||||
}
|
||||
/**
|
||||
* numCfg
|
||||
* @return numCfg
|
||||
*/
|
||||
|
||||
public Map<String, NumBoundaryCfg> getNumCfg() {
|
||||
return numCfg;
|
||||
}
|
||||
/**
|
||||
* @param numCfg the numCfg to set
|
||||
*/
|
||||
public void setNumCfg(Map<String, NumBoundaryCfg> numCfg) {
|
||||
this.numCfg = numCfg;
|
||||
}
|
||||
/**
|
||||
* complexCfg
|
||||
* @return complexCfg
|
||||
*/
|
||||
|
||||
public Map<String, ComplexkeywordCfg> getComplexCfg() {
|
||||
return complexCfg;
|
||||
}
|
||||
/**
|
||||
* @param complexCfg the complexCfg to set
|
||||
*/
|
||||
public void setComplexCfg(Map<String, ComplexkeywordCfg> complexCfg) {
|
||||
this.complexCfg = complexCfg;
|
||||
}
|
||||
/**
|
||||
* mainTableType
|
||||
* @return mainTableType
|
||||
*/
|
||||
|
||||
public String getMainTableType() {
|
||||
return mainTableType;
|
||||
}
|
||||
/**
|
||||
* @param mainTableType the mainTableType to set
|
||||
*/
|
||||
public void setMainTableType(String mainTableType) {
|
||||
this.mainTableType = mainTableType;
|
||||
}
|
||||
/**
|
||||
* otherTables
|
||||
* @return otherTables
|
||||
*/
|
||||
|
||||
public List<TableBean> getOtherTables() {
|
||||
return otherTables;
|
||||
}
|
||||
/**
|
||||
* @param otherTables the otherTables to set
|
||||
*/
|
||||
public void setOtherTables(List<TableBean> otherTables) {
|
||||
this.otherTables = otherTables;
|
||||
}
|
||||
/**
|
||||
* mainTableDesc
|
||||
* @return mainTableDesc
|
||||
*/
|
||||
|
||||
public String getMainTableDesc() {
|
||||
return mainTableDesc;
|
||||
}
|
||||
/**
|
||||
* @param mainTableDesc the mainTableDesc to set
|
||||
*/
|
||||
public void setMainTableDesc(String mainTableDesc) {
|
||||
this.mainTableDesc = mainTableDesc;
|
||||
}
|
||||
/**
|
||||
* relation
|
||||
* @return relation
|
||||
*/
|
||||
|
||||
public MultipleCfgRelation getRelation() {
|
||||
return relation;
|
||||
}
|
||||
/**
|
||||
* @param relation the relation to set
|
||||
*/
|
||||
public void setRelation(MultipleCfgRelation relation) {
|
||||
this.relation = relation;
|
||||
}
|
||||
}
|
||||
@@ -1,74 +0,0 @@
|
||||
/**
|
||||
*@Title: MultipleCfgRelation.java
|
||||
*@Package com.nis.domain.configuration
|
||||
*@Description TODO
|
||||
*@author dell
|
||||
*@date 2018年4月10日 上午11:11:53
|
||||
*@version 版本号
|
||||
*/
|
||||
package com.nis.domain.configuration;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @ClassName: MultipleCfgRelation.java
|
||||
* @Description: TODO
|
||||
* @author (dell)
|
||||
* @date 2018年4月10日 上午11:11:53
|
||||
* @version V1.0
|
||||
*/
|
||||
public class MultipleCfgRelation implements Serializable{
|
||||
|
||||
/**
|
||||
* @Fields serialVersionUID:TODO(用一句话描述这个变量表示什么)
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
|
||||
private static final long serialVersionUID = -615924510840736781L;
|
||||
private int compileId;
|
||||
private String tableName;
|
||||
private int isValid;
|
||||
/**
|
||||
* compileId
|
||||
* @return compileId
|
||||
*/
|
||||
|
||||
public int getCompileId() {
|
||||
return compileId;
|
||||
}
|
||||
/**
|
||||
* @param compileId the compileId to set
|
||||
*/
|
||||
public void setCompileId(int compileId) {
|
||||
this.compileId = compileId;
|
||||
}
|
||||
/**
|
||||
* tableName
|
||||
* @return tableName
|
||||
*/
|
||||
|
||||
public String getTableName() {
|
||||
return tableName;
|
||||
}
|
||||
/**
|
||||
* @param tableName the tableName to set
|
||||
*/
|
||||
public void setTableName(String tableName) {
|
||||
this.tableName = tableName;
|
||||
}
|
||||
/**
|
||||
* isValid
|
||||
* @return isValid
|
||||
*/
|
||||
|
||||
public int getIsValid() {
|
||||
return isValid;
|
||||
}
|
||||
/**
|
||||
* @param isValid the isValid to set
|
||||
*/
|
||||
public void setIsValid(int isValid) {
|
||||
this.isValid = isValid;
|
||||
}
|
||||
}
|
||||
@@ -1,214 +0,0 @@
|
||||
/**
|
||||
*@Title: MultipleCfg.java
|
||||
*@Package com.nis.domain.configuration
|
||||
*@Description TODO
|
||||
*@author dell
|
||||
*@date 2018年3月13日 上午8:59:32
|
||||
*@version 版本号
|
||||
*/
|
||||
package com.nis.domain.configuration;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @ClassName: MultipleCfg.java
|
||||
* @Description: TODO
|
||||
* @author (dell)
|
||||
* @date 2018年3月13日 上午8:59:32
|
||||
* @version V1.0
|
||||
*/
|
||||
public class MultipleSearchCfg extends BaseCfg<MultipleSearchCfg> {
|
||||
|
||||
/**
|
||||
* @Fields serialVersionUID:TODO(用一句话描述这个变量表示什么)
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
|
||||
private static final long serialVersionUID = -8369567908781421920L;
|
||||
private String mainTable;//主表名
|
||||
private String mainTableType;//主表类型
|
||||
private String mainTableDesc;//主表类型
|
||||
private String ipTable;//查询条件IP表名,界面限制查询条件除了共用属性之外只能查一个条件
|
||||
private String stringTable;//查询条件字符串表名,界面限制查询条件除了共用属性之外只能查一个条件
|
||||
private String complexTable;//查询条件增强字符串串表名,界面限制查询条件除了共用属性之外只能查一个条件
|
||||
private List<TableBean> otherTables;//key 表名,value 类型
|
||||
//ip配置
|
||||
private BaseIpCfg ipCfg;
|
||||
//字符串配置
|
||||
private BaseStringCfg stringCfg;
|
||||
//数值类配置
|
||||
private NumBoundaryCfg numCfg;
|
||||
//增强字符串配置
|
||||
private ComplexkeywordCfg complexCfg;
|
||||
//地域配置
|
||||
private AreaIpCfg areaIpCfg;
|
||||
/**
|
||||
* mainTable
|
||||
* @return mainTable
|
||||
*/
|
||||
|
||||
public String getMainTable() {
|
||||
return mainTable;
|
||||
}
|
||||
/**
|
||||
* @param mainTable the mainTable to set
|
||||
*/
|
||||
public void setMainTable(String mainTable) {
|
||||
this.mainTable = mainTable;
|
||||
}
|
||||
/**
|
||||
* ipCfg
|
||||
* @return ipCfg
|
||||
*/
|
||||
|
||||
public BaseIpCfg getIpCfg() {
|
||||
return ipCfg;
|
||||
}
|
||||
/**
|
||||
* @param ipCfg the ipCfg to set
|
||||
*/
|
||||
public void setIpCfg(BaseIpCfg ipCfg) {
|
||||
this.ipCfg = ipCfg;
|
||||
}
|
||||
/**
|
||||
* stringCfg
|
||||
* @return stringCfg
|
||||
*/
|
||||
|
||||
public BaseStringCfg getStringCfg() {
|
||||
return stringCfg;
|
||||
}
|
||||
/**
|
||||
* @param stringCfg the stringCfg to set
|
||||
*/
|
||||
public void setStringCfg(BaseStringCfg stringCfg) {
|
||||
this.stringCfg = stringCfg;
|
||||
}
|
||||
/**
|
||||
* numCfg
|
||||
* @return numCfg
|
||||
*/
|
||||
|
||||
public NumBoundaryCfg getNumCfg() {
|
||||
return numCfg;
|
||||
}
|
||||
/**
|
||||
* @param numCfg the numCfg to set
|
||||
*/
|
||||
public void setNumCfg(NumBoundaryCfg numCfg) {
|
||||
this.numCfg = numCfg;
|
||||
}
|
||||
/**
|
||||
* complexCfg
|
||||
* @return complexCfg
|
||||
*/
|
||||
|
||||
public ComplexkeywordCfg getComplexCfg() {
|
||||
return complexCfg;
|
||||
}
|
||||
/**
|
||||
* @param complexCfg the complexCfg to set
|
||||
*/
|
||||
public void setComplexCfg(ComplexkeywordCfg complexCfg) {
|
||||
this.complexCfg = complexCfg;
|
||||
}
|
||||
/**
|
||||
* areaIpCfg
|
||||
* @return areaIpCfg
|
||||
*/
|
||||
|
||||
public AreaIpCfg getAreaIpCfg() {
|
||||
return areaIpCfg;
|
||||
}
|
||||
/**
|
||||
* @param areaIpCfg the areaIpCfg to set
|
||||
*/
|
||||
public void setAreaIpCfg(AreaIpCfg areaIpCfg) {
|
||||
this.areaIpCfg = areaIpCfg;
|
||||
}
|
||||
/**
|
||||
* mainTableType
|
||||
* @return mainTableType
|
||||
*/
|
||||
|
||||
public String getMainTableType() {
|
||||
return mainTableType;
|
||||
}
|
||||
/**
|
||||
* @param mainTableType the mainTableType to set
|
||||
*/
|
||||
public void setMainTableType(String mainTableType) {
|
||||
this.mainTableType = mainTableType;
|
||||
}
|
||||
/**
|
||||
* otherTables
|
||||
* @return otherTables
|
||||
*/
|
||||
|
||||
public List<TableBean> getOtherTables() {
|
||||
return otherTables;
|
||||
}
|
||||
/**
|
||||
* @param otherTables the otherTables to set
|
||||
*/
|
||||
public void setOtherTables(List<TableBean> otherTables) {
|
||||
this.otherTables = otherTables;
|
||||
}
|
||||
/**
|
||||
* ipTable
|
||||
* @return ipTable
|
||||
*/
|
||||
|
||||
public String getIpTable() {
|
||||
return ipTable;
|
||||
}
|
||||
/**
|
||||
* @param ipTable the ipTable to set
|
||||
*/
|
||||
public void setIpTable(String ipTable) {
|
||||
this.ipTable = ipTable;
|
||||
}
|
||||
/**
|
||||
* stringTable
|
||||
* @return stringTable
|
||||
*/
|
||||
|
||||
public String getStringTable() {
|
||||
return stringTable;
|
||||
}
|
||||
/**
|
||||
* @param stringTable the stringTable to set
|
||||
*/
|
||||
public void setStringTable(String stringTable) {
|
||||
this.stringTable = stringTable;
|
||||
}
|
||||
/**
|
||||
* complexTable
|
||||
* @return complexTable
|
||||
*/
|
||||
|
||||
public String getComplexTable() {
|
||||
return complexTable;
|
||||
}
|
||||
/**
|
||||
* @param complexTable the complexTable to set
|
||||
*/
|
||||
public void setComplexTable(String complexTable) {
|
||||
this.complexTable = complexTable;
|
||||
}
|
||||
/**
|
||||
* mainTableDesc
|
||||
* @return mainTableDesc
|
||||
*/
|
||||
|
||||
public String getMainTableDesc() {
|
||||
return mainTableDesc;
|
||||
}
|
||||
/**
|
||||
* @param mainTableDesc the mainTableDesc to set
|
||||
*/
|
||||
public void setMainTableDesc(String mainTableDesc) {
|
||||
this.mainTableDesc = mainTableDesc;
|
||||
}
|
||||
}
|
||||
@@ -15,7 +15,7 @@ package com.nis.domain.configuration;
|
||||
* @date 2018年2月6日 上午8:46:52
|
||||
* @version V1.0
|
||||
*/
|
||||
public class PptpUrlCfg extends BaseStringCfg {
|
||||
public class PptpUrlCfg extends BaseStringCfg<PptpUrlCfg> {
|
||||
/**
|
||||
* @Fields serialVersionUID:TODO(用一句话描述这个变量表示什么)
|
||||
*
|
||||
|
||||
@@ -15,7 +15,7 @@ package com.nis.domain.configuration;
|
||||
* @date 2018年2月6日 上午10:27:18
|
||||
* @version V1.0
|
||||
*/
|
||||
public class RtmpUrlCfg extends BaseStringCfg{
|
||||
public class RtmpUrlCfg extends BaseStringCfg<RtmpUrlCfg>{
|
||||
/**
|
||||
* @Fields serialVersionUID:TODO(用一句话描述这个变量表示什么)
|
||||
*
|
||||
|
||||
@@ -15,7 +15,7 @@ package com.nis.domain.configuration;
|
||||
* @date 2018年2月6日 上午10:24:55
|
||||
* @version V1.0
|
||||
*/
|
||||
public class RtspUrlCfg extends BaseStringCfg {
|
||||
public class RtspUrlCfg extends BaseStringCfg<RtspUrlCfg> {
|
||||
/**
|
||||
* @Fields serialVersionUID:TODO(用一句话描述这个变量表示什么)
|
||||
*
|
||||
|
||||
@@ -15,7 +15,7 @@ package com.nis.domain.configuration;
|
||||
* @date 2018年2月6日 上午8:59:51
|
||||
* @version V1.0
|
||||
*/
|
||||
public class SslKeywordCfg extends BaseStringCfg{
|
||||
public class SslKeywordCfg extends BaseStringCfg<SslKeywordCfg>{
|
||||
public static final String tableName="ssl_keyword_cfg";
|
||||
/**
|
||||
* @Fields serialVersionUID:TODO(用一句话描述这个变量表示什么)
|
||||
|
||||
Reference in New Issue
Block a user