using System; using System.Collections.Generic; using GxPress.Result.SystemRole; namespace GxPress.Result.Admin { /// /// 分页结果 /// public class AdminPageResult { /// /// id /// public int Id { get; set; } /// /// 账号 /// public string Account { get; set; } /// /// 用户名 /// public string Name { get; set; } /// /// 手机号码 /// public string Phone { get; set; } /// /// 电子邮箱 /// public string Email { get; set; } /// /// 性别 /// public string Sex { get; set; } /// /// 角色ID /// /// public int RoleId { get; set; } /// /// 创建时间 /// public DateTime? CreatedDate { get; set; } /// /// 菜单 /// /// public List MenuInResult { get; set; } /// /// 登陆ID /// /// public string Ip { get; set; } /// /// 登陆时间 /// /// public DateTime LoginTime { get; set; } } }