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 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 DateTime? identification_start_time { get; set; }
///
/// 判读时间
///
public DateTime? identification_end_time { get; set; }
///
/// 是否违法
///
public int? is_illegal { get; set; }
}
}