This commit is contained in:
张良(004796)
2024-03-19 15:20:14 +08:00
parent 6fa752d8a8
commit 979d89eeac
25 changed files with 549 additions and 26 deletions

View File

@@ -0,0 +1,19 @@
package com.ruoyi.xq.enums.common;
import lombok.Getter;
@Getter
public enum AreaCodeLevelEnum {
COUNTRY("country","国家"),
PROVINCE("province","省份"),
CITY("city",""),
DISTRICT("city","区县"),
;
private final String code;
private final String text;
AreaCodeLevelEnum(String code, String text) {
this.code = code;
this.text = text;
}
}