34 lines
980 B
C#
34 lines
980 B
C#
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;
|
||
}
|
||
}
|
||
}
|