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/P2pKeywordCfg.java

24 lines
509 B
Java
Raw Normal View History

2018-08-17 19:34:36 +08:00
package com.nis.domain.configuration;
public class P2pKeywordCfg extends BaseStringCfg<P2pKeywordCfg>{
/**
*
*/
private static final long serialVersionUID = 1308668362397070497L;
private static final String tableName="p2p_keyword_cfg";
@Override
public void initDefaultValue() {
// TODO Auto-generated method stub
super.initDefaultValue();
this.exprType=0;
this.matchMethod=0;
this.isHexbin=0;
}
public static String getTablename() {
return tableName;
}
}