35 lines
1.0 KiB
C#
35 lines
1.0 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace OpenAuth.App.ServiceApp.FireManagement.Request
|
||
{
|
||
public class FireClueInfoReq
|
||
{
|
||
//当前页
|
||
public int page { get; set; }
|
||
//每页条数
|
||
public int limit { get; set; }
|
||
//火情线索描述
|
||
public string name { get; set; }
|
||
//火情线索地址
|
||
public string adress { get; set; }
|
||
//状态,上报 = 1处理中 = 2,处理完成 = 3误报 = 4已合并 = 5
|
||
public int? state { get; set; }
|
||
//来源类型APP = 1 高空瞭望 = 2无人机 = 3人工合并 = 4,卫星遥感=6,摄像头=7
|
||
public int? sourcetype { get; set; }
|
||
//上报事件开始时间
|
||
public DateTime? reporttimebegin { get; set; }
|
||
//上报事件结束时间
|
||
public DateTime? reporttimeend { get; set; }
|
||
|
||
public FireClueInfoReq()
|
||
{
|
||
page = 1;
|
||
limit = 10;
|
||
}
|
||
}
|
||
}
|