using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OpenAuth.App.Request { public class GetQueryCaseReq { public void Init() { if (handle_status_list == null) handle_status_list = new List(); } public int? handle_status_id { get; set; } public int? is_examine { get; set; } public int? is_illegal { get; set; } public int? is_dealer { get; set; } /// /// 处理措施 /// 0 拟拆除 /// 1 查处 /// 2 拟完善手续 /// public int? measure_name_type { get; set; } public List handle_status_list { get; set; } /// /// 根据街道过滤 /// public string streetid { get; set; } //public string countyid { get; set; } } }