using OpenAuth.App.Request; using OpenAuth.App.Response; using OpenAuth.Repository.Domain; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OpenAuth.App.DroneScreenDisplay.Response { public class ScreenDroneCaseInfoReq { public void Init() { if (this.relationCaseNo == null) relationCaseNo = new List(); if (this.tags == null) tags = new List(); } /// /// 工作区 /// public string work_area { get; set; } public DroneCaseInfoSingle info { get; set; } /// /// 关联案件 /// public List relationCaseNo { get; set; } = new List(); /// /// 案件标签 /// public List tags { get; set; } = new List(); /// /// 视频列表 /// public List videos { get; set; } public decimal? lng { get; set; } public decimal? lat { get; set; } } }