using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace Operater.DbModel
{
///
///
///
[SugarTable("menu_set")]
public class MenuSet
{
///
///
///
public MenuSet()
{
}
///
///
///
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
public System.String Id { get; set; }
///
/// 菜单层级
///
[SugarColumn(ColumnName = "menu_level")]
public System.Int32? MenuLevel { get; set; }
///
/// 菜单名称
///
[SugarColumn(ColumnName = "menu_name")]
public System.String MenuName { get; set; }
///
/// 权限
///
[SugarColumn(ColumnName = "menu_role")]
public System.String MenuRole { get; set; }
///
/// 父id
///
[SugarColumn(ColumnName = "parent_id")]
public System.String ParentId { get; set; }
///
/// 排序
///
[SugarColumn(ColumnName = "ord_index")]
public System.Int32? OrdIndex { get; set; }
}
}