ChouBox/ChouBox.Model/Entities/AdminOperationLog.cs
2025-04-23 19:20:23 +08:00

35 lines
651 B
C#

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