using System;
using Znyc.Admin.Commons.Dtos;
namespace Znyc.Admin.Security.Dtos
{
///
/// 输出对象模型
///
[Serializable]
public class UserOutputDto : IOutputDto
{
public long Id { get; set; }
///
/// 账号
///
public string Account { get; set; }
///
/// 用户名
///
public string UserName { get; set; }
///
/// 头像
///
public string AvatarUrl { get; set; }
///
/// 电话
///
public string Phone { get; set; }
///
/// 状态
///
public int Status { get; set; }
///
/// 角色名称
///
public string RoleName { get; set; }
///
/// 公司名称
///
public string CompanyName { get; set; }
///
/// 创建时间
///
public string CreatedTime { get; set; }
}
}