namespace JT808.Protocol.Enums { public enum JT808ErrorCode { /// /// 校验和不相等 /// CheckCodeNotEqual = 1001, /// /// 没有标记 /// /// GetFormatterAttributeError = 1002, /// /// 消息头解析错误 /// HeaderParseError = 1003, /// /// 消息体解析错误 /// BodiesParseError = 1004, GetAttributeError = 1005, /// /// 没有实现对应的类型 /// NotImplType = 1006, /// /// 长度不够 /// NotEnoughLength = 1007, /// /// 没有全局注册格式化器 /// /// NotGlobalRegisterFormatterAssembly = 1008, /// /// 经纬度错误 /// LatOrLngError = 1009 } }