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