using System.Collections.Generic; using Newtonsoft.Json; namespace CoreAgent.Domain.Models.Protocol; /// /// 协议日志明细 /// public class ProtocolLogDetail { /// /// 源信息 /// [JsonProperty("src")] public string Src { get; set; } /// /// 索引 /// [JsonProperty("idx")] public int Idx { get; set; } /// /// 日志级别 /// [JsonProperty("level")] public int Level { get; set; } /// /// 方向 /// [JsonProperty("dir")] public string Dir { get; set; } /// /// 时间戳 /// [JsonProperty("timestamp")] public long Timestamp { get; set; } /// /// 小区信息 /// [JsonProperty("cell")] public int? Cell { get; set; } /// /// 数据列表 /// [JsonProperty("data")] public List Data { get; set; } /// /// 层信息 /// [JsonProperty("layer")] public string Layer { get; set; } /// /// UE标识 /// [JsonProperty("ue_id")] public int? UeId { get; set; } /// /// 帧信息 /// [JsonProperty("frame")] public int? Frame { get; set; } /// /// 时隙信息 /// [JsonProperty("slot")] public int? Slot { get; set; } }