42 lines
947 B
C#
42 lines
947 B
C#
|
|
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<int?>();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
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; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 处理措施
|
|||
|
|
/// 0 拟拆除
|
|||
|
|
/// 1 查处
|
|||
|
|
/// 2 拟完善手续
|
|||
|
|
/// </summary>
|
|||
|
|
public int? measure_name_type { get; set; }
|
|||
|
|
|
|||
|
|
public List<int?> handle_status_list { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 根据街道过滤
|
|||
|
|
/// </summary>
|
|||
|
|
public string streetid { get; set; }
|
|||
|
|
|
|||
|
|
//public string countyid { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|