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