工控机状态.cs 564 B

1234567891011121314151617181920212223
  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.Message
  7. {
  8. public class 工控机状态
  9. {
  10. public const string OperationCode = "6f4";
  11. public 工控机状态()
  12. {
  13. }
  14. /// <summary>
  15. /// 实际工控机工作状态
  16. /// </summary>
  17. [Data(BitStart = 56, BitLength = 2, DataType = "binary", Description = "", Sequence = 1)]
  18. public string 实际工控机工作状态 { get; set; }
  19. }
  20. }