using System; using System.Linq; using System.Text; using SqlSugar; namespace OpenAuth.Repository.Domain { /// /// /// [SugarTable("lasa_shpdata")] public partial class LasaShpData { public LasaShpData(){ } /// /// Desc:主键 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public string Id {get;set;} /// /// Desc:名称 /// Default: /// Nullable:True /// public string Name {get;set;} /// /// Desc:类型(区分限飞区域,作业区域等) /// Default: /// Nullable:True /// public string Type {get;set;} /// /// Desc:属性(边框属性,颜色,宽度等,json格式) /// Default: /// Nullable:True /// public string Properties {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 Geom {get;set;} /// /// Desc:项目id /// Default: /// Nullable:True /// public string WorkSpaceId {get;set;} public int State { get;set;} public string CreateUserName { get; set;} public decimal Area { get; set; } public decimal Length { get; set; } } }