using System; using System.Linq; using System.Text; using SqlSugar; namespace SA.Entity.zxdcrm_Models { /// ///系统菜单 /// [SugarTable("bas_leftmemu")] public partial class BasLeftmemu { public BasLeftmemu(){ } /// /// Desc:菜单id /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true,ColumnName="menuid")] public int Menuid {get;set;} /// /// Desc:模块ID /// Default: /// Nullable:True /// [SugarColumn(ColumnName="modulemenuid")] public int? Modulemenuid {get;set;} /// /// Desc:菜单名 /// Default: /// Nullable:False /// [SugarColumn(ColumnName="mname")] public string Mname {get;set;} /// /// Desc:菜单url /// Default: /// Nullable:False /// [SugarColumn(ColumnName="url")] public string Url {get;set;} /// /// Desc:是否组 /// Default: /// Nullable:False /// [SugarColumn(ColumnName="isgroup")] public int Isgroup {get;set;} /// /// Desc:是否显示 /// Default: /// Nullable:False /// [SugarColumn(ColumnName="isshow")] public int Isshow {get;set;} /// /// Desc:权限id /// Default: /// Nullable:True /// [SugarColumn(ColumnName="rightid")] public string? Rightid {get;set;} /// /// Desc:父结点id /// Default: /// Nullable:True /// [SugarColumn(ColumnName="parentid")] public int? Parentid {get;set;} /// /// Desc:排序id /// Default: /// Nullable:True /// [SugarColumn(ColumnName="sortid")] public int? Sortid {get;set;} /// /// Desc:创建时间 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="ctime")] public DateTime? Ctime {get;set;} /// /// Desc:创建人 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="createuser")] public int? Createuser {get;set;} /// /// Desc:图标 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="imageurl")] public string? Imageurl {get;set;} } }