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

25 lines
488 B
Java
Raw Normal View History

2018-08-17 19:34:36 +08:00
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;
}
}