Infrastructure/OpenAuth.App/ServiceApp/FireManagement/Request/FireClueTaskReq.cs

34 lines
980 B
C#
Raw Normal View History

2026-01-07 11:30:37 +08:00
using Infrastructure;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.ServiceApp.FireManagement.Request
{
public class FireClueTaskReq
{
//当前页
public int page { get; set; }
//每页条数
public int limit { get; set; }
//任务内容或者火情线索名称
public string name { get; set; }
//状态1待接收、2已接收、3已完成
public int? state { get; set; }
//任务类型uav-无人机核查verify-人员现场核查helicopter-直升机核查
public string type { get; set; }
//任务下发开始时间
public DateTime? tasktimebegin { get; set; }
//任务下发结束时间
public DateTime? tasktimeend { get; set; }
public FireClueTaskReq()
{
page = 1;
limit = 10;
}
}
}