using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.ServiceApp.Response
{
public class DroneShpDataTaskResp
{
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true)]
public int gid { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Id { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string geom { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public int handle_status_id { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string handle_status_name { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string typename { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string original_case_no { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string case_no { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public int is_intact { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public int is_illegal { get; set; }
}
}