using System; using System.Collections.Generic; namespace WebAPIServer.Models; public partial class TblUtsUseroperation { public int Id { get; set; } /// /// 创建时间 /// public DateTime? CreationTime { get; set; } /// /// 用户名字 /// public string? UserName { get; set; } /// /// ip地址 /// public string? Ip { get; set; } /// /// 浏览器版本 /// public string? Browser { get; set; } /// /// 操作类型 /// public string? Operation { get; set; } /// /// 选择的数据库 /// public string? Database { get; set; } /// /// 设备型号 /// public string? Device { get; set; } /// /// 地理位置 /// public string? Location { get; set; } }