using cd.dapper.extension;
namespace learun.iapplication
{
///
/// 版 本 EasyCode EC管理后台
/// Copyright (c) 2019-present EC管理有限公司
/// 创建人:tobin
/// 日 期:2019.09.10
/// 描 述:功能模块按钮
///
[Table("lr_base_modulebutton")]
public class ModuleButtonEntity
{
#region 实体成员
///
/// 按钮主键
///
///
[Key]
public string F_ModuleButtonId { get; set; }
///
/// 功能主键
///
///
public string F_ModuleId { get; set; }
///
/// 父级主键
///
///
public string F_ParentId { get; set; }
///
/// 图标
///
///
public string F_Icon { get; set; }
///
/// 编码
///
///
public string F_EnCode { get; set; }
///
/// 名称
///
///
public string F_FullName { get; set; }
///
/// Action地址
///
///
public string F_ActionAddress { get; set; }
///
/// 排序码
///
///
public int? F_SortCode { get; set; }
#endregion 实体成员
}
}