初始化
This commit is contained in:
56
WebAPIServer/Models/TblUtsManageDevlog.cs
Normal file
56
WebAPIServer/Models/TblUtsManageDevlog.cs
Normal file
@@ -0,0 +1,56 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace WebAPIServer.Models;
|
||||
|
||||
public partial class TblUtsManageDevlog
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public int? DevId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 操作时间
|
||||
/// </summary>
|
||||
public DateTime? DateTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 设备公网IP
|
||||
/// </summary>
|
||||
public string? PublicIp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 设备内网IP
|
||||
/// </summary>
|
||||
public string? PrivateIp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Licence文件名
|
||||
/// </summary>
|
||||
public string? LicFileName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 产生日志的App名
|
||||
/// </summary>
|
||||
public string? AppName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// APP版本号
|
||||
/// </summary>
|
||||
public string? AppVersion { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 测试配置名称
|
||||
/// </summary>
|
||||
public string? TestPlan { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 登陆用户账号索引
|
||||
/// </summary>
|
||||
public int? UserId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 操作内容
|
||||
/// </summary>
|
||||
public string? Operation { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user