using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Face.Domain { public class TBL_QA_TestLog { /// /// 用户ID /// public int UserID { get; set; } /// /// 序号 /// public string DUT_SN { get; set; } /// /// 时间 /// public DateTime StartTime { get; set; } /// /// 测试结果 /// public bool TestResult { get; set; } /// /// 检测过程 /// public string QA_FlowLog { get; set; } /// /// 检测备注 /// public string QA_CheckResult { get; set; } } }