using OpenAuth.Repository.Domain; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OpenAuth.App.ServiceApp.DroneDocking.Response { public class DroneDockRes { public string id { get; set; } /// /// Desc:无人机机场设备唯一id(多个) /// Default: /// Nullable:True /// public string deviceid { get; set; } /// /// Desc:业务类型,用于标识数据来源 /// Default: /// Nullable:False /// public string bizidname { get; set; } /// /// Desc:下发任务名称 /// Default: /// Nullable:True /// public string taskname { get; set; } /// /// Desc:下发任务id /// Default: /// Nullable:True /// public string taskid { get; set; } /// /// Desc:数据类型, 用于后续成果上传获取上传路径 /// Default: /// Nullable:False /// public string datacode { get; set; } /// /// 任务是否开始执行(0未开始,1已开始,2已完成,3已取消) /// public int state { get; set; } public DateTime? createtime { get; set; } public List tasklist { get; set; } } }