using System;
using System.ComponentModel.DataAnnotations.Schema;
using Znyc.Recruitment.Admin.Commons.Entitys;
namespace Znyc.Recruitment.Admin.Security.Entitys
{
///
/// 用户表,数据实体对象
///
[Table("sys_adminuser")]
[Serializable]
public class AdminUserEntity : BaseEntity
{
///
/// 账户
///
public string Account { get; set; }
///
/// 姓名
///
public string UserName { get; set; }
///
/// 头像
///
public string HeadIcon { get; set; }
///
/// 性别,1=男,0=未知,2=女
///
public int Gender { get; set; }
///
/// 手机
///
public string MobilePhone { get; set; }
///
/// 组织主键
///
public long OrganizeId { get; set; }
///
/// 部门主键
///
public long DepartmentId { get; set; }
///
/// 角色主键
///
public long RoleId { get; set; }
///
/// 是否管理员
///
public bool IsAdministrator { get; set; }
///
/// 状态
///
public int Status { get; set; }
}
}