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

35 lines
1.0 KiB
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 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;
}
}
}