Sign in

MES / DataAcquisition · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • DataAcquisition
  • Common
  • Enums
  • DataTypeConst.cs
  • 录入Efort设备地址数据
    9c8fe88f
    唐召明 authored
    2024-03-24 10:48:10 +0800  
    Browse Code »
DataTypeConst.cs 377 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
namespace DataAcquisition.Common.Enums
{
    /// <summary>
    /// 数据类型
    /// </summary>
    public enum DataTypeConst
    {
        /// <summary>
        /// 单精度浮点类型
        /// </summary>
        Float,
        Bool,
        Byte,
        Int16,
        UInt16,
        Int32,
        UInt32,
        Int64,
        UInt64,
        String,
    }
}