194 lines
5.2 KiB
C#
194 lines
5.2 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SqlSugar;
|
|
|
|
namespace OpenAuth.Repository.Domain
|
|
{
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[SugarTable("drone_caseinfo_import")]
|
|
public partial class DroneCaseInfoImport
|
|
{
|
|
public DroneCaseInfoImport(){
|
|
|
|
|
|
}
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey=true)]
|
|
public string Id {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:案件编号
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string case_no {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:案件描述
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string case_description {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:经度
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public decimal? lng {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:纬度
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public decimal? lat {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:类型
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string typename {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:面积
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string area {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:图斑来源(全域巡查、卫片下发)
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string tubanlaiyuan {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string geom {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:批次号
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string picihao {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:创建时间
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public DateTime? createtime {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:创建人
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string createuser {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:创建人姓名
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string createusername {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:专题名称
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string subjectname {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:案件图片
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string casepic { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:纬度
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public decimal? shparea { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:农用地面积
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string nongyongdi_area { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:耕地面积
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string gengdi_area { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:永久基本农田面积
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string yongjiujibennongtian_area { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:重点区域面积
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string zhongdianquyu_area { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:生态保护红线面积
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string shengtaibaohuhongxian_area { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:国土空间规划面积
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string guotukongjianguihua_area { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:违法开采面积(开采);单位-亩
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string weifakaicaiarea_base { get; set; }
|
|
/// <summary>
|
|
/// Desc:违法占地面积(加工);单位-亩
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string weifazhandiarea_base { get; set; }
|
|
/// <summary>
|
|
/// Desc:城市开发边界面积(加工);单位-平方米
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "cskfbjarea_base")]
|
|
public string cskfbjarea_base { get; set; }
|
|
}
|
|
}
|