using OpenAuth.App.BaseApp.Base; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OpenAuth.App.ServiceApp.Request { public class QueryCaseInfoListReq : PageReq { public void Init() { if (this.handle_status_id < 0) handle_status_id = null; } /// /// 村id /// public string communityname { get; set; } /// /// 案件编号 /// public string case_no { get; set; } /// /// 案件类型 /// public string typeid { get; set; } /// /// 地址 /// public string address { get; set; } /// /// 案件描述 /// public string case_description { get; set; } /// /// 是否完整 /// public int? is_intact { get; set; } /// /// 是否关闭 /// public int? is_closed { get; set; } /// /// 是否上报人 /// public int? is_reporter { get; set; } /// /// 是否执法人 /// public int? is_dealer { 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; } /// /// 是否判读审核 /// public int? is_review { get; set; } /// /// 是否是判读审核人 /// public int? is_Reviewer { get; set; } } }