using DapperExtensions;
namespace FineAdmin.Model
{
[Table("dbsys_Module")]
public class ModuleModel : Entity
{
///
/// 父级
///
public int ParentId { get; set; }
///
/// 名称
///
public string FullName { get; set; }
///
/// 字体类型 layui-icon|ok-icon|my-icon
///
public string FontFamily { get; set; }
///
/// 图标
///
public string Icon { get; set; }
///
/// 链接
///
public string UrlAddress { get; set; }
///
/// 菜单按钮复选框Html
///
[Computed]
public string ModuleButtonHtml { get; set; }
///
/// 菜单是否选中
///
[Computed]
public bool IsChecked { get; set; }
}
}