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.
31 lines
781 B
31 lines
781 B
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using Znyc.Recruitment.Admin.Commons.Entitys;
|
|
|
|
namespace Znyc.Recruitment.Admin.Security.Entitys
|
|
{
|
|
/// <summary>
|
|
/// 用户表,数据实体对象
|
|
/// </summary>
|
|
[Table("sys_userfocus")]
|
|
[Serializable]
|
|
public class UserFocusEntity : BaseEntity<long>, ICreationAudited
|
|
{
|
|
/// <summary>
|
|
/// 默认构造函数(需要初始化属性的在此处理)
|
|
/// </summary>
|
|
public UserFocusEntity()
|
|
{
|
|
Id = 0;
|
|
}
|
|
|
|
#region Property Members
|
|
|
|
/// <summary>
|
|
/// 关注的用户ID
|
|
/// </summary>
|
|
public virtual string FocusUserId { get; set; }
|
|
|
|
#endregion Property Members
|
|
}
|
|
}
|