初始化

This commit is contained in:
2025-11-21 08:48:01 +08:00
commit b4d684a84c
202 changed files with 28585 additions and 0 deletions

35
CommonEntity/LogQuery.cs Normal file
View File

@@ -0,0 +1,35 @@
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; }
}
}