using System; using System.Collections.Generic; namespace WebAPIServer.Models; public partial class TblUtsManageDevlog { public int Id { get; set; } public int? DevId { get; set; } /// /// 操作时间 /// public DateTime? DateTime { get; set; } /// /// 设备公网IP /// public string? PublicIp { get; set; } /// /// 设备内网IP /// public string? PrivateIp { get; set; } /// /// Licence文件名 /// public string? LicFileName { get; set; } /// /// 产生日志的App名 /// public string? AppName { get; set; } /// /// APP版本号 /// public string? AppVersion { get; set; } /// /// 测试配置名称 /// public string? TestPlan { get; set; } /// /// 登陆用户账号索引 /// public int? UserId { get; set; } /// /// 操作内容 /// public string? Operation { get; set; } }