初始化
This commit is contained in:
43
Face.Domain/Application/TBL_QA_TestLog.cs
Normal file
43
Face.Domain/Application/TBL_QA_TestLog.cs
Normal file
@@ -0,0 +1,43 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Face.Domain
|
||||
{
|
||||
public class TBL_QA_TestLog
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 用户ID
|
||||
/// </summary>
|
||||
public int UserID { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 序号
|
||||
/// </summary>
|
||||
public string DUT_SN { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 时间
|
||||
/// </summary>
|
||||
public DateTime StartTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 测试结果
|
||||
/// </summary>
|
||||
public bool TestResult { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 检测过程
|
||||
/// </summary>
|
||||
public string QA_FlowLog { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 检测备注
|
||||
/// </summary>
|
||||
public string QA_CheckResult { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user