初始化
This commit is contained in:
49
DAL/New_Models/TbSysSystemLog.cs
Normal file
49
DAL/New_Models/TbSysSystemLog.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user