using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.ServiceApp.FireManagement.Response
{
public class FireClueInfoResp
{
[SugarColumn(IsPrimaryKey = true)]
public long Id { get; set; }
public string ReportPerson { get; set; }
public DateTime? ReportTime { get; set; }
public string Describe { get; set; }
public string Lng { get; set; }
public string Lat { get; set; }
public string Address { get; set; }
public int SourceType { get; set; }
public int State { get; set; }
public string CreateId { get; set; }
public string AreaName { get; set; }
public string SourceTypeName { get; set; }
public string StateName { get; set; }
///
/// 摄像机上报事件id
///
public string EventId { get; set; }
///
/// 线索编号
///
public string ClueNo { get; set; }
///
/// 合并后的火情主键
///
public long FireId { get; set; }
///
/// 图片地址
///
public string Image { get; set; }
///
/// 视频地址
///
public string Audio { get; set; }
public int FireType { get; set; }
}
}