20241106_MiLu_upperpc/DeerProject/Models/Sys_OperationLog.cs

22 lines
391 B
C#
Raw Normal View History

2025-02-20 05:54:12 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DeerProject.Models
{
/// <summary>
/// 操作日志
/// </summary>
public class Sys_OperationLog
{
public int ID { get; set; }
public DateTime CreateTime { get; set; }
public string? Remark { get; set; }
}
}