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

34 lines
980 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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;
}
}
}