namespace MiaoYu.Repository.Admin.Entities.Systems; /// /// 角色 /// [EntityDescription(FieldIgnored = true)] public class SysRole : DefaultEntity { /// /// 编号 /// public int? Number { get; set; } /// /// 角色名称 /// public string? Name { get; set; } /// /// 是否是管理员 /// public bool IsAdmin { get; set; } = false; /// /// 备注 /// public string? Remark { get; set; } /// /// 删除锁 ,如果是 true 则不能删除 /// public bool DeleteLock { get; set; } = false; }