using System;
using System.Collections.Generic;
namespace WebAPIServer.Models;
public partial class TblUtsManageApplog
{
///
/// 索引,无作用
///
public int Id { get; set; }
///
/// 服务索引
///
public int? ServiceId { get; set; }
///
/// APP名字
///
public string? AppName { get; set; }
///
/// App版本
///
public string? AppVersion { get; set; }
///
/// 测试项目名
///
public string? ProjectName { get; set; }
///
/// 测试站名
///
public string? StationName { get; set; }
///
/// 测试流程名
///
public string? TestPlan { get; set; }
///
/// 产生日期
///
public DateTime? DateTime { get; set; }
///
/// 日志类型
///
public string? LogType { get; set; }
///
/// 日志内容
///
public string? LogText { get; set; }
}