You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
1.5 KiB

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