初始化
This commit is contained in:
57
WebAPIServer/Models/TblUtsManageApplog.cs
Normal file
57
WebAPIServer/Models/TblUtsManageApplog.cs
Normal file
@@ -0,0 +1,57 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace WebAPIServer.Models;
|
||||
|
||||
public partial class TblUtsManageApplog
|
||||
{
|
||||
/// <summary>
|
||||
/// 索引,无作用
|
||||
/// </summary>
|
||||
public int Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 服务索引
|
||||
/// </summary>
|
||||
public int? ServiceId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// APP名字
|
||||
/// </summary>
|
||||
public string? AppName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// App版本
|
||||
/// </summary>
|
||||
public string? AppVersion { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 测试项目名
|
||||
/// </summary>
|
||||
public string? ProjectName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 测试站名
|
||||
/// </summary>
|
||||
public string? StationName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 测试流程名
|
||||
/// </summary>
|
||||
public string? TestPlan { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 产生日期
|
||||
/// </summary>
|
||||
public DateTime? DateTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 日志类型
|
||||
/// </summary>
|
||||
public string? LogType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 日志内容
|
||||
/// </summary>
|
||||
public string? LogText { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user