using System; using System.Collections.Generic; namespace WebAPIServer.Models; /// /// 操作日志 /// public partial class TblUtsManageLog { /// /// 索引,无作用 /// public int Id { get; set; } /// /// 用户索引 /// public int UserId { get; set; } /// /// 日志产生时间 /// public DateTime DateTime { get; set; } /// /// 操作内容 /// public string? Operation { get; set; } }