Shuxia Ning
2024-12-17 24fb6d95e0416ac3c00a93b87359567e45568a89
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 Yw.Model
{
    /// <summary>
    /// 行政区域类型
    /// </summary>
    public enum eDivisionType
    {
        [Display(Name = "省市区")]
        Province = 1,
 
        [Display(Name = "地级市")]
        City = 2,
 
        [Display(Name = "区县")]
        District = 3,
 
        [Display(Name = "街道")]
        Street = 4,
    }
}