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.

49 lines
1.2 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using SqlSugar;
namespace CompressorXN_Model
{
/// <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>
/// 数据状态
/// 1—可用0—不可用
/// </summary>
[SugarColumn(ColumnName = "isactive")]
public bool IsActive { get; set; } = true;
/// <summary>
/// 排序索引
/// </summary>
[SugarColumn(ColumnName = "sortindex")]
public int SortIndex { get; set; }
}
}