using System; using System.Linq; using System.Text; using SqlSugar; namespace WinformDevFramework { /// /// /// [SugarTable("sysDept")] public partial class sysDept { public sysDept(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int ID {get;set;} /// /// Desc:机构名称 /// Default: /// Nullable:True /// public string DeptName {get;set;} /// /// Desc:上级机构 /// Default: /// Nullable:True /// public int? PDeptID {get;set;} /// /// Desc:负责人 /// Default: /// Nullable:True /// public int? LeaderID {get;set;} /// /// Desc:备注 /// Default: /// Nullable:True /// public string Remark {get;set;} } }