Commit 66b7e492 authored by tianyiming's avatar tianyiming

需要提级的行政区划

parent 17f0c48c
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;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment