Commit 118a3c09 authored by tianyiming's avatar tianyiming

提级后需要处理数据的行政区划

parent 66b7e492
package com.yeejoin.amos.boot.module.common.api.enums;
import lombok.Getter;
/**
* 提级后需要处理数据的行政区划
*/
@Getter
public enum ReginExcludeStepEnum {
/**
* 渭南市
*/
WEINAN("610500", "渭南市"),
/**
* 咸阳市
*/
XIANYANG("610400", "咸阳市");
private final String code;
private final String name;
ReginExcludeStepEnum(String code, String name) {
this.code = code;
this.name = name;
}
}
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