using System; using System.Linq; using System.Text; using SqlSugar; namespace OpenAuth.Repository.Domain { /// ///省对接,任务添加详情 /// [SugarTable("drone_docktaskdetail")] public partial class DroneDocktaskdetail { public DroneDocktaskdetail(){ } /// /// Desc:主键 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public string id {get;set;} /// /// Desc:图斑标识码 /// Default: /// Nullable:True /// public string bsm {get;set;} /// /// Desc:县级行政区代码 /// Default: /// Nullable:True /// public string xzqdm {get;set;} /// /// Desc:地块编号 /// Default: /// Nullable:True /// public string dkbh {get;set;} /// /// Desc:地块类型 /// Default: /// Nullable:True /// public string dklx {get;set;} /// /// Desc:子地块编号 /// Default: /// Nullable:True /// public string zdkbh {get;set;} /// /// Desc:地块名称 /// Default: /// Nullable:True /// public string dkmc {get;set;} /// /// Desc:地块面积 /// Default: /// Nullable:True /// public decimal? dkmj {get;set;} /// /// Desc:地块范围,cgcs2000的经纬度坐标,wkt格式 /// Default: /// Nullable:True /// public string dkfw {get;set;} /// /// Desc:备注 /// Default: /// Nullable:True /// public string bz {get;set;} /// /// Desc:任务id,对应任务表id /// Default: /// Nullable:True /// public string taskid {get;set;} //飞行任务id public string flighttaskid { get;set;} } }