You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
463 B
31 lines
463 B
6 years ago
|
/**
|
||
|
* Copyright (c) 2019 人人开源 All rights reserved.
|
||
|
* <p>
|
||
|
* https://www.renren.io
|
||
|
* <p>
|
||
|
* 版权所有,侵权必究!
|
||
|
*/
|
||
|
|
||
|
package com.epmet.enums;
|
||
|
|
||
|
/**
|
||
|
* 行政区域 级别枚举
|
||
|
*
|
||
|
* @author Mark sunlightcs@gmail.com
|
||
|
*/
|
||
|
public enum RegionLevelEnum {
|
||
|
ONE(1),
|
||
|
TWO(2),
|
||
|
THREE(3);
|
||
|
|
||
|
private int value;
|
||
|
|
||
|
RegionLevelEnum(int value) {
|
||
|
this.value = value;
|
||
|
}
|
||
|
|
||
|
public int value() {
|
||
|
return this.value;
|
||
|
}
|
||
|
}
|