初始化

This commit is contained in:
2025-12-11 14:04:39 +08:00
commit 1f65bbf628
2676 changed files with 838983 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
using System;
using System.Collections.Generic;
namespace MySQLAccess.PGModels;
public partial class TcpUserDevOperationLog
{
/// <summary>
/// 主键ID
/// </summary>
public long Id { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime? CreateTime { get; set; }
/// <summary>
/// 客户端ID
/// </summary>
public long? ClientId { get; set; }
/// <summary>
/// 用户ID
/// </summary>
public int? UserId { get; set; }
/// <summary>
/// 用户IP地址
/// </summary>
public string? UserIp { get; set; }
/// <summary>
/// 用户系统信息
/// </summary>
public string? UserSystem { get; set; }
/// <summary>
/// 用户位置
/// </summary>
public string? UserLocation { get; set; }
/// <summary>
/// 操作动作
/// </summary>
public string? Action { get; set; }
/// <summary>
/// 备注信息
/// </summary>
public string? Remark { get; set; }
}