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 FireClueTaskResp { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true)] public long Id { get; set; } /// /// 接收人 /// public string Recipient { get; set; } /// /// 任务内容 /// public string Content { get; set; } /// /// 经度 /// public string Lng { get; set; } /// /// 纬度 /// public string Lat { get; set; } /// /// 地址 /// public string Address { get; set; } /// /// 状态 /// public int State { get; set; } /// /// 火情线索id /// public long fireclueid { get; set; } /// /// 状态 /// public string StateName { get; set; } /// /// 接收人姓名 /// public string RecipientName { get; set; } /// /// 下发时间 /// public DateTime? TaskTime { get; set; } /// /// 下发时间 /// public DateTime? CompleteTime { get; set; } /// /// 下发人 /// public string TaskUser { get; set; } /// /// 下发人姓名 /// public string TaskUserName { get; set; } /// /// 照片地址 /// public string Image { get; set; } /// /// 音频地址 /// public string Audio { get; set; } [SugarColumn(IsIgnore = true)] public string RecipientUsers { get; set; } } }