DataAttribute.cs 499 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace SIASUN.Autopilot.Device
  7. {
  8. class DataAttribute : System.Attribute
  9. {
  10. public int Sequence { get; set; }
  11. public string Description { get; set; }
  12. public string DataType { get; set; } //HEX BCD ASCII decimal binary
  13. public int BitLength { get; set; } // 位长度
  14. public int BitStart{ get; set; } // 起始位位置
  15. }
  16. }