using System; using System.Collections.Generic; using System.Text; namespace JT808.Protocol.Extensions.SuBiao.Enums { /// /// 主动安全消息Id /// Active security message Id /// public enum JT808_SuBiao_MsgId : ushort { /// /// 报警附件信息消息 /// Alarm attachment information message /// alarm_attachment_information_message = 0x1210, /// /// 文件信息上传 /// Uploading File Information /// uploading_file_information = 0x1211, /// /// 文件上传完成消息 /// Message indicating that file uploading is complete /// message_indicating_that_file_uploading_complete = 0x1212, /// /// 报警附件上传指令 /// Alarm attachment upload instruction /// alarm_attachment_upload_instruction = 0x9208, /// /// 文件上传完成消息应答 /// File upload complete reply message /// file_upload_complete_reply_message = 0x9212, } }