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.
 
 
 
 

46 lines
906 B

using cd.dapper.extension;
using System;
namespace learun.iapplication
{
/// <summary>
/// 版 本 EasyCode EC管理后台
/// Copyright (c) 2019-present EC管理有限公司
/// 创建人:tobin
/// 日 期:2019.09.25
/// 描 述:用户关联对象
/// </summary>
[Table("lr_base_userrelation")]
public class UserRelationEntity
{
#region 实体成员
/// <summary>
/// 用户关系主键
/// </summary>
[Key]
public string F_UserRelationId { get; set; }
/// <summary>
/// 用户主键
/// </summary>
public string F_UserId { get; set; }
/// <summary>
/// 分类:1-角色2-岗位
/// </summary>
public int? F_Category { get; set; }
/// <summary>
/// 对象主键
/// </summary>
public string F_ObjectId { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime? F_CreateDate { get; set; }
#endregion 实体成员
}
}