35 lines
681 B
C#
35 lines
681 B
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|