Estop故障码.cs 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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 Estop故障码
  9. {
  10. public const string OperationCode = "2e1";
  11. public Estop故障码()
  12. {
  13. }
  14. /// <summary>
  15. /// i
  16. /// </summary>
  17. [Data(BitStart = 48, BitLength = 1, DataType = "binary", Description = "", Sequence = 1)]
  18. public string i { get; set; }
  19. /// <summary>
  20. /// j
  21. /// </summary>
  22. [Data(BitStart = 49, BitLength = 1, DataType = "binary", Description = "", Sequence = 2)]
  23. public string j { get; set; }
  24. /// <summary>
  25. /// a
  26. /// </summary>
  27. [Data(BitStart = 56, BitLength = 1, DataType = "binary", Description = "", Sequence = 3)]
  28. public string a { get; set; }
  29. /// <summary>
  30. /// b
  31. /// </summary>
  32. [Data(BitStart = 57, BitLength = 1, DataType = "binary", Description = "", Sequence = 4)]
  33. public string b { get; set; }
  34. /// <summary>
  35. /// c
  36. /// </summary>
  37. [Data(BitStart = 58, BitLength = 1, DataType = "binary", Description = "", Sequence = 5)]
  38. public string c { get; set; }
  39. /// <summary>
  40. /// d
  41. /// </summary>
  42. [Data(BitStart = 59,BitLength = 1, DataType = "binary", Description = "", Sequence = 6)]
  43. public string d { get; set; }
  44. /// <summary>
  45. /// e
  46. /// </summary>
  47. [Data(BitStart = 60, BitLength = 1, DataType = "binary", Description = "", Sequence = 7)]
  48. public string e { get; set; }
  49. /// <summary>
  50. /// f
  51. /// </summary>
  52. [Data(BitStart = 61, BitLength = 1, DataType = "binary", Description = "", Sequence = 8)]
  53. public string f { get; set; }
  54. /// <summary>
  55. /// g
  56. /// </summary>
  57. [Data(BitStart = 62, BitLength = 1, DataType = "binary", Description = "", Sequence = 9)]
  58. public string g { get; set; }
  59. /// <summary>
  60. /// h
  61. /// </summary>
  62. [Data(BitStart = 63, BitLength = 1, DataType = "binary", Description = "", Sequence =10)]
  63. public string h { get; set; }
  64. }
  65. }