初始化

This commit is contained in:
2025-11-21 08:48:01 +08:00
commit b4d684a84c
202 changed files with 28585 additions and 0 deletions

View File

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