using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.ServiceApp.DroneCaseInfo.Request
{
public class TaskListReq
{
public TaskListReq()
{
page = 1;
limit = 10;
type = 0;
isOutTime = 3;
isIllegal = 100;
weifaleixing = 100;
}
///
/// 年份格式2024
///
public int year { get; set; }
///
/// 图斑来源
///
public string tubanlaiyuan { get; set; }
///
/// 批次号
///
public string picihao { get; set; }
///
/// 标注
///
public string isBuildName { get; set; }
///
/// 下发开始时间(2024-07-08)
///
public string startTime { get; set; }
///
/// 下发结束时间(2024-07-08)
///
public string endTime { get; set; }
///
/// 乡镇
///
public string streetid { get; set; }
///
/// 县级
///
public string countyid { get; set; }
///
/// 图斑编号
///
public string caseNo { get; set; }
///
/// 排序字段area,gengdi_area,createtime
///
public string sortType { get; set; }
///
/// 正序倒叙(正序asc,倒叙desc)
///
public string order { get; set; }
///
/// 当前状态
///
public string nowStatus { get; set; }
///
/// 图斑面积
///
public string tubanArea1 { get; set; }
///
/// 图斑面积
///
public string tubanArea2 { get; set; }
///
/// 耕地面积
///
public string gengdiArea1 { get; set; }
///
/// 耕地面积
///
public string gengdiArea2 { get; set; }
///
/// 页码
///
/// 1
public int page { get; set; }
///
/// 每页条数
///
/// 10
public int limit { get; set; }
///
/// 0全部,1 为收藏
///
public int type { get; set; }
///
/// 0为农用地,1为建设用地推堆土
///
public int? landType { get; set; }
///
/// 0为未超期,1已超期
///
public int isOutTime { get; set; }
///
/// 0-合法,1-违法,2-其他
///
public int isIllegal { get; set; }
///
/// 整改措施
///
public string measureName { get; set; }
///
/// 0非农化违法用地1非粮化违法用地
///
public int weifaleixing { get; set; }
public string isSplit { get; set; }
public int display { get; set; }
///
/// 0 图斑调整,1 接收办理
///
public int receive { get; set; }
}
}