using System;
using System.Collections.Generic;
namespace SupplierManager.Models;
public partial class AasUsersOperateLog
{
///
/// 主键
///
public int Id { get; set; }
///
/// 用户名字
///
public string? Username { get; set; }
///
/// 日志类型ID
///
public int? TypeId { get; set; }
///
/// 执行操作
///
public string? Operate { get; set; }
///
/// ip地址
///
public string? Ip { get; set; }
///
/// 浏览器版本
///
public string? Browser { get; set; }
///
/// 操作类型
///
public string? Operation { get; set; }
///
/// 设备型号
///
public string? Device { get; set; }
///
/// 地理位置
///
public string? Location { get; set; }
///
/// 创建时间
///
public DateTime? CreationTime { get; set; }
}