using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CommonEntity { public class LogQuery { public List Data { get; set; } /// /// 时间片 /// public string? Start_Time { get; set; } public string? End_Time { get; set; } public string? Start_Time_Really { get; set; } public string? End_Time_Really { get; set; } public bool IsQuery_Really { get; set; } public int PageSize { get; set; } public int PageIndex { get; set; } public List CommandType { get; set; } } public class QueryData { public string? HotelCode { get; set; } public string? Key_HostNumber { get; set; } public string? RoomNumber { get; set; } public string? MAC { get; set; } } }