初始化
This commit is contained in:
34
Face.Domain/Application/TBL_TestLog.cs
Normal file
34
Face.Domain/Application/TBL_TestLog.cs
Normal file
@@ -0,0 +1,34 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Face.Domain
|
||||
{
|
||||
/// <summary>
|
||||
/// 测试记录实体
|
||||
/// </summary>
|
||||
public class TBL_TestLog
|
||||
{
|
||||
/// <summary>
|
||||
/// ID
|
||||
/// </summary>
|
||||
public int ID { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// sn号
|
||||
/// </summary>
|
||||
public string Tester_SN { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 测试结果
|
||||
/// </summary>
|
||||
public bool TestResult { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 订单ID
|
||||
/// </summary>
|
||||
public int OrderID { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user