using System; using System.Linq; using System.Text; using SqlSugar; namespace SA.Entity.zxdcrm_Models { /// ///模块菜单 /// [SugarTable("bas_modulemenu")] public partial class BasModulemenu { public BasModulemenu(){ } /// /// Desc:模块ID /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true,ColumnName="modulemenuid")] public int Modulemenuid {get;set;} /// /// Desc:菜单名 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="mname")] public string? Mname {get;set;} /// /// Desc:权限id /// Default: /// Nullable:True /// [SugarColumn(ColumnName="rightid")] public string? Rightid {get;set;} /// /// Desc:图标名称 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="imageurl")] public string? Imageurl {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;} } }