using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using ZhonTai.Admin.Domain.Role;
namespace ZhonTai.Admin.Services.User.Dto;
public class UserGetPageOutput
{
///
/// 主键Id
///
public long Id { get; set; }
///
/// 账号
///
public string UserName { get; set; }
///
/// 姓名
///
public string Name { get; set; }
///
/// 手机号
///
public string Mobile { get; set; }
///
/// 邮箱
///
public string Email { get; set; }
///
/// 角色
///
public string[] RoleNames { get; set; }
[JsonIgnore]
public ICollection Roles { get; set; }
///
/// 创建时间
///
public DateTime? CreatedTime { get; set; }
}