using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OpenAuth.App.ServiceApp.DroneCaseInfo.Request { public class TaskDetailReq { public int? tianbaoleixing { get; set; } /// /// 年份 /// public int year { get; set; } /// /// 图斑标注 /// public string is_build_name { get; set; } /// /// 图斑号 /// public string geomid { get; set; } /// /// 图班来源 /// public string tubanlaiyuan { get; set; } /// /// 批次号 /// public string picihao { get; set; } /// /// 是否超时 0-正常 1-超时 /// public int? isouttime { get; set; } /// /// 统计页面的区域id /// public string areaid { get; set; } /// /// 行政区划等级 /// public int level { get; set; } /// /// 排序字段 /// public string sort { get; set; } /// /// 正序倒叙(正序asc,倒叙desc) /// public string order { get; set; } /// /// 页码 /// /// 1 public int page { get; set; } /// /// 每页条数 /// /// 10 public int limit { get; set; } /// /// 不传或传0的时候是正常的 1-收藏 /// public int type { get; set; } public string nowStatus { get; set; } } public class TaskSTXFDetailReq { /// /// 年份 /// public int year { get; set; } /// /// 图斑编号 /// public string geomid { get; set; } /// /// 图班来源 /// public string tubanlaiyuan { get; set; } /// /// 批次号 /// public string picihao { get; set; } /// /// 县 /// public string countyid { get; set; } /// /// 镇 /// public string streetid { get; set; } /// /// Desc:处理状态 0 1 2 3 4 5 /// Default: /// Nullable:True /// public int? handle_status_id { get; set; } /// /// 统计页面的区域id /// public string areaid { get; set; } /// /// 行政区划等级 /// public int level { get; set; } /// /// 排序字段 /// public string sort { get; set; } /// /// 正序倒叙(正序asc,倒叙desc) /// public string order { get; set; } /// /// 页码 /// /// 1 public int page { get; set; } /// /// 每页条数 /// /// 10 public int limit { get; set; } /// /// 不传或传0的时候是正常的 1-收藏 /// public int type { get; set; } public string nowStatus { get; set; } } }