using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SIASUN.Autopilot.Device.Message { public class Estop故障码 { public const string OperationCode = "2e1"; public Estop故障码() { } /// /// i /// [Data(BitStart = 48, BitLength = 1, DataType = "binary", Description = "", Sequence = 1)] public string i { get; set; } /// /// j /// [Data(BitStart = 49, BitLength = 1, DataType = "binary", Description = "", Sequence = 2)] public string j { get; set; } /// /// a /// [Data(BitStart = 56, BitLength = 1, DataType = "binary", Description = "", Sequence = 3)] public string a { get; set; } /// /// b /// [Data(BitStart = 57, BitLength = 1, DataType = "binary", Description = "", Sequence = 4)] public string b { get; set; } /// /// c /// [Data(BitStart = 58, BitLength = 1, DataType = "binary", Description = "", Sequence = 5)] public string c { get; set; } /// /// d /// [Data(BitStart = 59,BitLength = 1, DataType = "binary", Description = "", Sequence = 6)] public string d { get; set; } /// /// e /// [Data(BitStart = 60, BitLength = 1, DataType = "binary", Description = "", Sequence = 7)] public string e { get; set; } /// /// f /// [Data(BitStart = 61, BitLength = 1, DataType = "binary", Description = "", Sequence = 8)] public string f { get; set; } /// /// g /// [Data(BitStart = 62, BitLength = 1, DataType = "binary", Description = "", Sequence = 9)] public string g { get; set; } /// /// h /// [Data(BitStart = 63, BitLength = 1, DataType = "binary", Description = "", Sequence =10)] public string h { get; set; } } }