using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.ServiceApp.DroneCaseInfoDev.Request
{
public class CaseInfoDev
{
///
/// 页码
///
/// 1
public int page { get; set; }
///
/// 每页条数
///
/// 10
public int limit { get; set; }
public string key { get; set; }
public CaseInfoDev()
{
page = 1;
limit = 10;
}
///
/// 图斑类型
///
public string typename { get; set; }
///
/// 图斑来源
///
public string tubanlaiyuan { get; set; }
///
/// 批次号
///
public string picihao { get; set; }
///
/// 标注 类型
///
public string isBuildName { get; set; }
///
/// 判定结果
///
public int? isIllegal { get; set; }
///
/// 县区
///
public string countyid { get; set; }
///
/// 乡镇
///
public string streetid { get; set; }
///
/// 图斑编号
///
public string caseNo { get; set; }
///
/// 标识号
///
public string originalcaseno { get; set; }
///
/// 当前状态
///
public string nowStatus { get; set; }
///
/// 整改措施0拆除复耕1补办手续
///
public string measureName { get; set; }
///
/// 是否判读
///
public int? isIntact { get; set; }
///
/// 同步时间
///
public DateTime? synchronoustime { get; set; }
}
}