using System; using System.Linq; using System.Text; using SqlSugar; namespace Sugar.Enties { /// /// /// [SugarTable("dtproperties")] public partial class dtproperties { public dtproperties(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int id {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? objectid {get;set;} /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public string property {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string value {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string uvalue {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public byte[] lvalue {get;set;} /// /// Desc: /// Default:0 /// Nullable:False /// public int version {get;set;} } }