using System; using System.Collections.Generic; namespace ChouBox.Model.Entities; /// /// 管理员操作日志 /// public partial class AdminOperationLog { public int Id { get; set; } /// /// 管理员ID /// public int AId { get; set; } /// /// 操作ip /// public string Ip { get; set; } = null!; /// /// 操作控制器 /// public string? Operation { get; set; } public string? Content { get; set; } /// /// 操作时间 /// public uint Addtime { get; set; } }