using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AUTS.Domain.ViewModels { public class ResponseQAAjaxSearch { /// /// 数量 /// public int numble { get; set; } public QAResultVM qaResultVM { get; set; } public List QADataSearchList { get; set; } public ResponseQAAjaxSearch() { QADataSearchList = new List(); } } public class QADataSearch { /// /// 站ID /// public int StationID { get; set; } /// /// 站名 /// public string StationName { get; set; } /// /// 时间 /// public string StartTime { get; set; } /// /// 结果 /// public bool TestResult { get; set; } } public class QAResultVM { /// /// 序号集 /// public string ProductNumbers { get; set; } /// /// 检测结果 /// public bool TestResult { get; set; } /// /// 检测过程 /// public string CheckProc { get; set; } /// /// 项目ID /// public int ProjectID { get; set; } /// /// QA站ID /// public int QAStationID { get; set; } } }