wyb
2021-05-11 49ce087bd2a34a150597e1cc1da157af242c0b6d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Pcb.Common
{
    /// <summary>
    /// 数据来源
    /// </summary>
    public enum EnumAreaGrade
    {
        /// <summary>
        /// 1=大区域
        /// </summary>
        [NoteAttribute("大区域")]
        Region=1,
        /// <summary>
        /// 2=省份
        /// </summary>
        [NoteAttribute("省份")]
        Province =2,
        /// <summary>
        /// 市
        /// </summary>
        [NoteAttribute("市")]
        City=3,
        /// <summary>
        /// 地区
        /// </summary>
        [NoteAttribute("地区")]
        Area=4,
        /// <summary>
        /// 街道
        /// </summary>
        [NoteAttribute("省份")]
        Street=5,
        /// <summary>
        /// 6=交割地
        /// </summary>
        [NoteAttribute("交割地")]
        TradeAddress=6
 
    }
}