You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.2 KiB
62 lines
1.2 KiB
3 years ago
|
using cd.dapper.extension;
|
||
|
|
||
|
namespace learun.iapplication
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 版 本 EasyCode EC管理后台
|
||
|
/// Copyright (c) 2019-present EC管理有限公司
|
||
|
/// 创建人:tobin
|
||
|
/// 日 期:2019.09.10
|
||
|
/// 描 述:功能模块视图列
|
||
|
/// </summary>
|
||
|
[Table("lr_base_modulecolumn")]
|
||
|
public class ModuleColumnEntity
|
||
|
{
|
||
|
#region 实体成员
|
||
|
|
||
|
/// <summary>
|
||
|
/// 列主键
|
||
|
/// </summary>
|
||
|
/// <returns></returns>
|
||
|
[Key]
|
||
|
public string F_ModuleColumnId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 功能主键
|
||
|
/// </summary>
|
||
|
/// <returns></returns>
|
||
|
public string F_ModuleId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 父级主键
|
||
|
/// </summary>
|
||
|
/// <returns></returns>
|
||
|
public string F_ParentId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 编码
|
||
|
/// </summary>
|
||
|
/// <returns></returns>
|
||
|
public string F_EnCode { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 名称
|
||
|
/// </summary>
|
||
|
/// <returns></returns>
|
||
|
public string F_FullName { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 排序码
|
||
|
/// </summary>
|
||
|
/// <returns></returns>
|
||
|
public int? F_SortCode { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 备注
|
||
|
/// </summary>
|
||
|
/// <returns></returns>
|
||
|
public string F_Description { get; set; }
|
||
|
|
||
|
#endregion 实体成员
|
||
|
}
|
||
|
}
|