初始化
This commit is contained in:
77
WebAPIServer/Models/TblUtsManageServicelog.cs
Normal file
77
WebAPIServer/Models/TblUtsManageServicelog.cs
Normal file
@@ -0,0 +1,77 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace WebAPIServer.Models;
|
||||
|
||||
public partial class TblUtsManageServicelog
|
||||
{
|
||||
/// <summary>
|
||||
/// 日志索引
|
||||
/// </summary>
|
||||
public int Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 公司名称
|
||||
/// </summary>
|
||||
public string? CompanyName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 应用名称
|
||||
/// </summary>
|
||||
public string? AppName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 应用版本
|
||||
/// </summary>
|
||||
public string? AppVersion { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 日志生成日期与时间
|
||||
/// </summary>
|
||||
public DateTime? DateTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 设备公网IP
|
||||
/// </summary>
|
||||
public string? DevPublicIp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 设备内网IP地址
|
||||
/// </summary>
|
||||
public string? DevPrivateIp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 设备MAC
|
||||
/// </summary>
|
||||
public string? DevMac { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 设备系统版本
|
||||
/// </summary>
|
||||
public string? DevOs { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 设备名称
|
||||
/// </summary>
|
||||
public string? DevName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 设备用户名
|
||||
/// </summary>
|
||||
public string? DevUserName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 设备网络状态
|
||||
/// </summary>
|
||||
public string? DevOnline { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 日志类型
|
||||
/// </summary>
|
||||
public string? LogType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 日志内容
|
||||
/// </summary>
|
||||
public string? LogText { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user