using System; using System.Collections.Generic; using System.Text; namespace JT808.Protocol.Enums { /// /// IO状态位 /// IO status bits /// [Flags] public enum JT808IOStatus:ushort { /// /// 深度休眠状态 /// Deep dormant state /// deep_dormant_state = 1, /// /// 休眠状态 /// dormant state /// dormant_state = 2 } }