using cd.dapper.extension; namespace learun.iapplication { /// /// 版 本 EasyCode EC管理后台 /// Copyright (c) 2019-present EC管理有限公司 /// 创建人:tobin /// 日 期:2020.04.07 /// 描 述:我的常用移动应用 /// [Table("lr_app_myfunction")] public class MyFunctionEntity { #region 实体成员 /// /// 主键 /// /// [Key] public string F_Id { get; set; } /// /// 用户主键ID /// /// public string F_UserId { get; set; } /// /// 功能主键 /// /// public string F_FunctionId { get; set; } /// /// 排序码 /// public int? F_Sort { get; set; } #endregion 实体成员 } }