表名枚举
This commit is contained in:
@ -6,14 +6,14 @@ public enum XzdClassEnum {
|
|||||||
CS_CONTRACT_INFORMATION("xzd_cs_contract_information");
|
CS_CONTRACT_INFORMATION("xzd_cs_contract_information");
|
||||||
|
|
||||||
|
|
||||||
private final String TypeName;
|
private final String className;
|
||||||
|
|
||||||
|
|
||||||
public String getTypeName() {
|
public String getClassName() {
|
||||||
return TypeName;
|
return className;
|
||||||
}
|
}
|
||||||
|
|
||||||
XzdClassEnum(String TypeName) {
|
XzdClassEnum(String className) {
|
||||||
this.TypeName = TypeName;
|
this.className = className;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user