using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SIASUN.Autopilot.Device { class DataAttribute : System.Attribute { public int Sequence { get; set; } public string Description { get; set; } public string DataType { get; set; } //HEX BCD ASCII decimal binary public int BitLength { get; set; } // 位长度 public int BitStart{ get; set; } // 起始位位置 } }