1、增加NTC_BGP_AS配置域

2、增加Subcribe ID配置域
3、增加do_log
This commit is contained in:
leijun
2018-08-22 10:26:52 +08:00
parent b5da00f715
commit e458363886
12 changed files with 1806 additions and 992 deletions

View File

@@ -0,0 +1,21 @@
package com.nis.domain.configuration;
public class NtcBgpAsCfg extends BaseStringCfg<NtcBgpAsCfg> {
private static final String tableName="ntc_bgp_as_cfg";
private static final long serialVersionUID = -3581535510691651087L;
/**
* 配置关键字
*/
@Override
public void initDefaultValue() {
super.initDefaultValue();
this.exprType=0;
this.matchMethod=0;
}
public static String getTablename() {
return tableName;
}
}