namespace OpenAuth.App.ServiceApp.DroneCaseInfo.Request; public class MineralsTaskListReq { public MineralsTaskListReq() { page = 1; limit = 10; } /// /// 年份格式2024 /// public int year { get; set; } /// /// 图斑来源 /// public string tubanlaiyuan { get; set; } /// /// 图斑类型 /// public string typename { get; set; } /// /// 下发开始时间(2024-07-08) /// public string startTime { get; set; } /// /// 下发结束时间(2024-07-08) /// public string endTime { get; set; } /// /// 县级 /// public string countyid { get; set; } /// /// 乡镇 /// public string streetid { get; set; } /// /// 图斑编号 /// public string caseNo { get; set; } /// /// 当前状态 取值 市级驳回,县级驳回 /// public string nowStatus { get; set; } /// /// 排序字段 weifaarea_base,gengdi_area,synchronoustime /// public string sortType { 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? register { get; set; } /// /// 是否查询收藏数据 0-未收藏 1-收藏 /// public int type { get; set; } }