using System; using System.Collections.Generic; namespace DAL.New_Models; public partial class TbSysSystemLog { /// /// id /// public long Id { get; set; } /// /// 用户名 /// public string? Account { get; set; } /// /// 权限模块ID /// public int? AuthorityId { get; set; } /// /// 动作 /// public string? Action { get; set; } /// /// 明细 /// public string? Detail { get; set; } /// /// 结果 /// public string? Result { get; set; } /// /// IP地址 /// public string? Ip { get; set; } /// /// 操作日期 /// public DateTime? Time { get; set; } public int? HotelId { get; set; } }