补充提交.
This commit is contained in:
24
src/main/java/com/nis/domain/configuration/P2pHashCfg.java
Normal file
24
src/main/java/com/nis/domain/configuration/P2pHashCfg.java
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package com.nis.domain.configuration;
|
||||||
|
|
||||||
|
public class P2pHashCfg extends BaseStringCfg<P2pHashCfg>{
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
private static final long serialVersionUID = -7072353181349049294L;
|
||||||
|
private static final String tableName="p2p_hash_cfg";
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void initDefaultValue() {
|
||||||
|
// TODO Auto-generated method stub
|
||||||
|
super.initDefaultValue();
|
||||||
|
this.exprType=0;
|
||||||
|
this.matchMethod=0;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static String getTablename() {
|
||||||
|
return tableName;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
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;
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user