This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
k18-ntcs-web-ntc/src/main/java/com/nis/domain/configuration/NtcBgpAsCfg.java

22 lines
463 B
Java
Raw Normal View History

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;
}
}