Files

36 lines
924 B
C#
Raw Permalink Normal View History

2025-11-21 08:48:01 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CommonEntity
{
public class LogQuery
{
public List<QueryData> Data { get; set; }
/// <summary>
/// 时间片
/// </summary>
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<string> 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; }
}
}