1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| using System.ComponentModel.DataAnnotations;
|
| namespace HStation.Model
| {
| /// <summary>
| /// 行政区域类型
| /// </summary>
| public enum eRegionType
| {
| [Display(Name = "省市区")]
| Province = 1,
|
| [Display(Name = "地级市")]
| City = 2,
|
| [Display(Name = "区县")]
| District = 3,
|
| [Display(Name = "街道")]
| Street = 4,
| }
| }
|
|