using NetTopologySuite.Geometries;
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 DroneShpDataResp
{
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true)]
public int gid { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string geom { get; set; }
///
/// Desc:案件编号
/// Default:
/// Nullable:True
///
public string case_no { get; set; }
///
/// Desc:类型
/// Default:
/// Nullable:True
///
public string typename { get; set; }
///
/// Desc:处理状态 未办理 办理中 已办结
/// Default:
/// Nullable:True
///
public string handle_status_name { get; set; }
///
/// Desc:县
/// Default:
/// Nullable:True
///
public string countyname { get; set; }
///
/// Desc:镇
/// Default:
/// Nullable:True
///
public string streetname { get; set; }
///
/// Desc:村
/// Default:
/// Nullable:True
///
public string communityname { get; set; }
///
/// Desc:面积
/// Default:
/// Nullable:True
///
public string area { get; set; }
///
/// Desc:是否违法(0-合法,1-违法,2-其他)
/// Default:
/// Nullable:True
///
public string is_illegal_name { get; set; }
///
/// Desc:项目名称
/// Default:
/// Nullable:True
///
public string xiangmumc { get; set; }
///
/// Desc:项目主体
/// Default:
/// Nullable:True
///
public string xiangmuzhuti { get; set; }
///
/// Desc:违法类型(0非农化1非粮化)
/// Default:
/// Nullable:True
///
public string weifaleixing { get; set; }
///
/// Desc:整改措施(0拆除复耕1补办手续)
/// Default:
/// Nullable:True
///
public string measure_name { get; set; }
public string tubanlaiyuan { get; set; }
public string is_intact_name { get; set; }
public string yongjiujibennongtian_area { get; set; }
public string gengdi_area { get; set; }
public DateTime? createtime { get; set; }
public DateTime? synchronoustime { get; set; }
public string original_case_no { get; set; }
}
}