using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace Learun.Application.AppMagager
{
///
/// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
/// Copyright (c) 2013-2018 北京泉江科技有限公司
/// 创 建:超级管理员
/// 日 期:2018-06-26 10:32
/// 描 述:我的常用移动应用
///
public class MyFunctionEntity
{
#region 实体成员
///
/// 主键
///
///
[Column("F_ID")]
public string F_Id { get; set; }
///
/// 用户主键ID
///
///
[Column("F_USERID")]
public string F_UserId { get; set; }
///
/// 功能主键
///
///
[Column("F_FUNCTIONID")]
public string F_FunctionId { get; set; }
///
/// 排序码
///
[Column("F_SORT")]
public int? F_Sort { get; set; }
#endregion
#region 扩展操作
///
/// 新增调用
///
public void Create()
{
this.F_Id = Guid.NewGuid().ToString();
}
///
/// 编辑调用
///
///
public void Modify(string keyValue)
{
this.F_Id = keyValue;
}
#endregion
}
}