using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HxEnum
{
///
/// 数据类型枚举
///
public static class DataTypeEnum
{
///
/// 数据类型
///
public enum DataTypeEnum_Parameter
{
///
/// 字符串类型
///
[Description("字符串类型")]
Varchar = 0,
///
/// 数字类型
///
[Description("数字类型")]
Int = 1,
///
/// 时间类型
///
[Description("时间类型")]
Datetime = 2,
///
/// 布尔类型
///
[Description("布尔类型")]
Bool = 3,
///
/// 小数类型
///
[Description("小数类型")]
Double = 4,
///
/// JSON类型
///
[Description("JSON类型")]
JSON = 5,
///
/// 无符号短整数
///
[Description("无符号短整数")]
USHORT = 6,
///
/// 字节类型
///
[Description("字节类型")]
BYTE = 7,
///
/// 字典类型
///
[Description("字典类型")]
Dictionary = 8,
///
/// 无符号短整数对象类型
///
[Description("无符号短整数对象类型")]
USHORTArray = 9
}
}
}