修改初始化方法为public

This commit is contained in:
wangxin
2018-03-13 14:42:10 +08:00
parent 30874a3c9f
commit fb603dc2f4
2 changed files with 2 additions and 2 deletions

View File

@@ -431,7 +431,7 @@ public class BaseCfg<T> extends BaseEntity<T> {
this.tableName = tableName; this.tableName = tableName;
} }
protected void initDefaultValue(){ public void initDefaultValue(){
} }
/** /**

View File

@@ -226,7 +226,7 @@ public class DnsIpCfg extends BaseCfg<DnsIpCfg> {
* @see com.nis.domain.configuration.BaseCfg#initDefaultValue() * @see com.nis.domain.configuration.BaseCfg#initDefaultValue()
*/ */
@Override @Override
protected void initDefaultValue() { public void initDefaultValue() {
// TODO Auto-generated method stub // TODO Auto-generated method stub
super.initDefaultValue(); super.initDefaultValue();
this.srcIp ="0.0.0.0"; this.srcIp ="0.0.0.0";