初始化
This commit is contained in:
35
CommonEntity/LogQuery.cs
Normal file
35
CommonEntity/LogQuery.cs
Normal 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; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user