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.
32 lines
624 B
32 lines
624 B
using cd.dapper.extension;
|
|
|
|
namespace learun.iapplication
|
|
{
|
|
/// <summary>
|
|
/// 版 本 EasyCode EC管理后台
|
|
/// Copyright (c) 2019-present EC管理有限公司
|
|
/// 创建人:tobin
|
|
/// 日 期:2020.04.07
|
|
/// 描 述:移动端功能管理
|
|
/// </summary>
|
|
[Table("lr_app_fnscheme")]
|
|
public class FunctionSchemeEntity
|
|
{
|
|
#region 实体成员
|
|
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[Key]
|
|
public string F_Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 功能模板
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public string F_Scheme { get; set; }
|
|
|
|
#endregion 实体成员
|
|
}
|
|
}
|