feixian_weifajianguan/OpenAuth.App/ServiceApp/DroneCaseInfo/Response/DroneShpDataResp.cs

114 lines
3.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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