using System; using System.Collections.Generic; namespace ChouBox.Model.Entities; /// /// 管理员 /// public partial class Admin { public int Id { get; set; } /// /// 账号 /// public string? Username { get; set; } /// /// 姓名 /// public string Nickname { get; set; } = null!; /// /// 登录密码 /// public string? Password { get; set; } /// /// 权限ID /// public uint? Qid { get; set; } /// /// 0正常 1禁用 /// public uint? Status { get; set; } /// /// 登录刷新时间 /// public uint GetTime { get; set; } /// /// token随机数 /// public string Random { get; set; } = null!; /// /// token /// public string? Token { get; set; } /// /// 操作人 /// public uint AdminId { get; set; } public uint Addtime { get; set; } /// /// 修改时间 /// public uint UpdateTime { get; set; } }