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