表名枚举
This commit is contained in:
@ -0,0 +1,19 @@
|
|||||||
|
package org.dromara.xzd.enums;
|
||||||
|
|
||||||
|
|
||||||
|
public enum XzdClassEnum {
|
||||||
|
|
||||||
|
CS_CONTRACT_INFORMATION("xzd_cs_contract_information");
|
||||||
|
|
||||||
|
|
||||||
|
private final String TypeName;
|
||||||
|
|
||||||
|
|
||||||
|
public String getTypeName() {
|
||||||
|
return TypeName;
|
||||||
|
}
|
||||||
|
|
||||||
|
XzdClassEnum(String TypeName) {
|
||||||
|
this.TypeName = TypeName;
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user