using System; using System.Collections.Generic; namespace ChouBox.Model.Entities; /// /// 权限 /// public partial class AdminQuanxian { public int Id { get; set; } public string? Title { get; set; } public string? Describe { get; set; } public string? Quanxian { get; set; } public int? Addtime { get; set; } public int? UpdateTime { get; set; } /// /// 操作人 /// public int? AdminId { get; set; } }