using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AUTS.Domain { /// /// 测试记录实体 /// public class TBL_TestLog { /// /// ID /// public int ID { get; set; } /// /// sn号 /// public string Tester_SN { get; set; } /// /// 测试结果 /// public bool TestResult { get; set; } /// /// 订单ID /// public int OrderID { get; set; } } }