using AutoMapper;
using System;
using Znyc.Recruitment.Admin.Commons.Dtos;
using Znyc.Recruitment.Admin.Security.Entitys;
namespace Znyc.Recruitment.Admin.Security.Dtos
{
///
/// 输入对象模型
///
[AutoMap(typeof(AdminUserEntity))]
[Serializable]
public class AdminUserInputDto : IInputDto
{
///
/// 账号
///
public string Account { get; set; }
///
/// 用户名
///
public string UserName { get; set; }
///
/// 头像
///
public string HeadIcon { get; set; }
///
/// 性别
///
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; }
///
/// 主键
///
public long Id { get; set; }
}
}