LASAPlatform/OpenAuth.App/ServiceApp/AirLine/Request/AirLineListRequestPage.cs

30 lines
634 B
C#
Raw Normal View History

2025-07-15 16:20:01 +08:00
using OpenAuth.App.Request;
namespace OpenAuth.App.ServiceApp.AirLine.Request;
public class AirLineListRequestPage : PageReq
{
public bool Ascending { get; set; }
/// <summary>
2025-08-23 15:47:22 +08:00
///无人机类型
2025-07-15 16:20:01 +08:00
/// </summary>
public string UavTypeId { get; set; }
2025-08-23 15:47:22 +08:00
/// <summary>
/// 无人机型号
/// </summary>
public string UavModel { get; set; }
2025-07-15 16:20:01 +08:00
/// <summary>
/// 航线类型
/// </summary>
public string AirLineType { get; set; }
/// <summary>
/// 航线名称
/// </summary>
public string AirLineName { get; set; }
public string Folder { get; set; }
2025-07-15 16:20:01 +08:00
}