30 lines
1.0 KiB
C#
30 lines
1.0 KiB
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace OpenAuth.App.ServiceApp.DroneCaseInfo.Response
|
|||
|
|
{
|
|||
|
|
public class ExamineItemResponse
|
|||
|
|
{
|
|||
|
|
public string taskid { get; set; }
|
|||
|
|
public int? taskstatus { get; set; }
|
|||
|
|
public string unitname { get; set; }
|
|||
|
|
public int? isouttime { get; set; }
|
|||
|
|
public string isbuildingname { get; set; }
|
|||
|
|
public int? isillegal { get; set; }
|
|||
|
|
public string caseno { get; set; }
|
|||
|
|
public string countyname { get; set; }
|
|||
|
|
public string countyid { get; set; }
|
|||
|
|
public string streetname { get; set; }
|
|||
|
|
public string streatid { get; set; }
|
|||
|
|
public int? receive { get; set; }
|
|||
|
|
public int? illegaltype { get; set; }
|
|||
|
|
public string measurename { get; set; }
|
|||
|
|
public int? handstatusid { get; set; }
|
|||
|
|
public string handstatusname { get; set; }
|
|||
|
|
public int? isclosed { get; set; }
|
|||
|
|
public int? issplit { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|