schangxiang@126.com
2025-11-04 f5ed29dc26c7cd952d56ec5721a2efc43cd25992
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HxEnum
{
    /// <summary>
    /// 数据类型枚举
    /// </summary>
    public static class DataTypeEnum
    {
        /// <summary>
        /// 数据类型
        /// </summary>
        public enum DataTypeEnum_Parameter
        {
            /// <summary>
            /// 字符串类型
            /// </summary>
            [Description("字符串类型")]
            Varchar = 0,
 
            /// <summary>
            /// 数字类型
            /// </summary>
            [Description("数字类型")]
            Int = 1,
 
            /// <summary>
            /// 时间类型
            /// </summary>
            [Description("时间类型")]
            Datetime = 2,
 
            /// <summary>
            /// 布尔类型
            /// </summary>
            [Description("布尔类型")]
            Bool = 3,
 
            /// <summary>
            /// 小数类型
            /// </summary>
            [Description("小数类型")]
            Double = 4,
 
            /// <summary>
            /// JSON类型
            /// </summary>
            [Description("JSON类型")]
            JSON = 5,
 
            /// <summary>
            /// 无符号短整数
            /// </summary>
            [Description("无符号短整数")]
            USHORT = 6,
 
            /// <summary>
            /// 字节类型
            /// </summary>
            [Description("字节类型")]
            BYTE = 7,
 
            /// <summary>
            /// 字典类型
            /// </summary>
            [Description("字典类型")]
            Dictionary = 8,
 
            /// <summary>
            /// 无符号短整数对象类型
            /// </summary>
            [Description("无符号短整数对象类型")]
            USHORTArray = 9
        }
    }
}