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 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? is_dispense { get; set; } /// /// 根据接收人处理人权限过滤 /// public int? dispense_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 string verify_user { get; set; } /// /// 是否违法 /// public int? is_illegal { get; set; } /// /// 是否核销 /// public int? is_verification { get; set; } /// /// 是否退回 /// public int? is_drawback { get; set; } /// /// 是否过滤显示自己的数据 /// public int? is_back_to_userid { get; set; } /// /// 超期时间标识 /// public int? out_time_flag { get; set; } /// /// 是否处理 /// public int? is_deal { get; set; } /// /// 24小时未核查 /// public int? is_not_deal_hour24 { get; set; } /// /// 是否整改完成 /// public int? is_complete { get; set; } /// /// 是否核查 /// public int? is_examine { get; set; } /// /// 处理措施 /// public string measure_name { get; set; } /// /// 处理措施类型 /// public int? measure_name_type { get; set; } /// /// 工作区名称 /// public string work_area_name { get; set; } /// /// 是否审核权限过滤 /// public int? is_verify_filter { get; set; } /// /// 案件标签 /// public string tagids { get; set; } = ""; } public class QueryDealCaseInfoListReq : PageReq { public void Init() { if (this.handle_status_id < 0) handle_status_id = null; } /// /// 村名称 /// 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? 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 int? is_dispense { get; set; } /// /// 判读时间 /// public DateTime? identification_start_time { get; set; } /// /// 判读时间 /// public DateTime? identification_end_time { get; set; } /// /// 是否违法 /// public int? is_illegal { get; set; } /// /// 是否核销 /// public int? is_verification { get; set; } /// /// 是否退回 /// public int? is_drawback { get; set; } /// /// 是否过滤显示自己的数据 /// public int? is_back_to_userid { get; set; } /// /// 超期时间标识 /// public int? out_time_flag { get; set; } /// /// 是否处理 /// public int? is_deal { get; set; } /// /// 24小时未核查 /// public int? is_not_deal_hour24 { get; set; } /// /// 是否整改完成 /// public int? is_complete { get; set; } /// /// 是否核查 /// public int? is_examine { get; set; } /// /// 处理措施 /// public string measure_name { get; set; } /// /// 工作区名称 /// public string work_area_name { get; set; } /// /// 是否审核权限过滤 /// public int? is_verify_filter { get; set; } } }