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.
49 lines
1.1 KiB
49 lines
1.1 KiB
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using Znyc.Recruitment.Admin.Commons.Entitys;
|
|
|
|
namespace Znyc.Recruitment.Admin.Security.Entitys
|
|
{
|
|
/// <summary>
|
|
/// 用户表,数据实体对象
|
|
/// </summary>
|
|
[Table("rm_user")]
|
|
[Serializable]
|
|
public class UserEntity : BaseEntity
|
|
{
|
|
/// <summary>
|
|
/// OpenId
|
|
/// </summary>
|
|
public string OpenId { get; set; }
|
|
|
|
/// <summary>
|
|
/// UnionId
|
|
/// </summary>
|
|
public string UnionId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户昵称
|
|
/// </summary>
|
|
public string UserName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户头像
|
|
/// </summary>
|
|
public string AvatarUrl { get; set; }
|
|
|
|
/// <summary>
|
|
/// 手机号
|
|
/// </summary>
|
|
public string Phone { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态
|
|
/// </summary>
|
|
public int Status { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否实名认证
|
|
/// </summary>
|
|
public bool IsRealAuthentication { get; set; }
|
|
}
|
|
}
|