using OpenAuth.App.Request; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OpenAuth.App.Request { public class QueryIntactCaseInfoListReq : PageReq { /// /// 村id /// public string communityname { get; set; } /// /// 案件编号 /// public string case_no { get; set; } /// /// 是否完整 /// public int? is_intact { get; set; } /// /// 案件类型 /// public string typeid { get; set; } /// /// 地址 /// public string address { get; set; } /// /// 案件描述 /// public string case_description { get; set; } /// /// 处理状态 /// public int? handle_status_id { get; set; } /// /// 案件状态 /// public string case_status_id { get; set; } /// /// 上报时间 /// public DateTime? report_start_time { get; set; } /// /// 上报时间 /// public DateTime? report_end_time { get; set; } /// /// 上报人姓名 /// public string report_name { get; set; } /// /// 执行人姓名 /// public string deal_username { get; set; } /// /// 判读时间 /// public DateTime? identification_start_time { get; set; } /// /// 判读时间 /// public DateTime? identification_end_time { get; set; } /// /// 县id /// public string countyid { get; set; } /// /// 镇id /// public string streetid { get; set; } /// /// 村id /// public string communityid { get; set; } /// /// 判读人id /// public string identification_userid { get; set; } /// /// 判读人 /// public string identification_user { get; set; } /// /// 判读人账号 /// public string identification_account { get; set; } /// /// 是否违法 /// public int? is_illegal { get; set; } } }