22 lines
662 B
C#
22 lines
662 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OpenAuth.App.ServiceApp.DroneScreenDisplay.Response
|
|
{
|
|
public class CaseInfoChartData
|
|
{
|
|
public string Id { get; set; }
|
|
public string createtime { get; set; }
|
|
public int? is_illegal { get; set; }
|
|
public int? weifaleixing { get; set; }
|
|
public string measure_name { get; set; }
|
|
public int? handle_status_id { get; set; }
|
|
public string gengdi_area { get; set; }
|
|
public string area { get; set; }
|
|
public string yongjiujibennongtian_area { get; set; }
|
|
}
|
|
}
|