Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
项目统一框架
amos-boot-biz
Commits
66b7e492
Commit
66b7e492
authored
Jul 22, 2024
by
tianyiming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
需要提级的行政区划
parent
17f0c48c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
0 deletions
+37
-0
ReginStepEnum.java
...join/amos/boot/module/common/api/enums/ReginStepEnum.java
+37
-0
No files found.
amos-boot-system-tzs/amos-boot-module-common/amos-boot-module-common-api/src/main/java/com/yeejoin/amos/boot/module/common/api/enums/ReginStepEnum.java
0 → 100644
View file @
66b7e492
package
com
.
yeejoin
.
amos
.
boot
.
module
.
common
.
api
.
enums
;
import
lombok.Getter
;
/**
* 需要提级的行政区划
*/
@Getter
public
enum
ReginStepEnum
{
/**
* 杨凌区
*/
YANGLING
(
"610403"
,
"杨陵区"
,
"map"
),
/**
* 西咸新区
*/
XIXIAN
(
"617000"
,
"西咸新区"
,
"other"
),
/**
* 韩城市
*/
HANCHENG
(
"610581"
,
"韩城市"
,
"map"
);
private
final
String
code
;
private
final
String
name
;
private
final
String
type
;
ReginStepEnum
(
String
code
,
String
name
,
String
type
)
{
this
.
code
=
code
;
this
.
name
=
name
;
this
.
type
=
type
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment