You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.0 KiB
C#

using SqlSugar;
namespace ProductionSystem_Model.DbModel.System
{
/// <summary>
/// 菜单表
/// </summary>
[SugarTable("sys_menu")]
public class Sys_Menu : BaseModel
{
/// <summary>
/// 菜单编码
/// </summary>
[SugarColumn(ColumnName = "menu_code")]
public string MenuCode { get; set; }
/// <summary>
/// 菜单名称
/// </summary>
[SugarColumn(ColumnName = "menu_name")]
public string MenuName { get; set; }
/// <summary>
/// 父级菜单编码
/// </summary>
[SugarColumn(ColumnName = "parent_code")]
public string ParentCode { get; set; }
/// <summary>
/// 菜单图标路径
/// </summary>
[SugarColumn(ColumnName = "menu_img_path")]
public string MenuImgPath { get; set; }
/// <summary>
/// 排序索引
/// </summary>
[SugarColumn(ColumnName = "sortindex")]
public int SortIndex { get; set; }
}
}