初始化项目
This commit is contained in:
82
AUTS.Domain.ViewModels/Capacity/ResponseQAAjaxSearch.cs
Normal file
82
AUTS.Domain.ViewModels/Capacity/ResponseQAAjaxSearch.cs
Normal file
@@ -0,0 +1,82 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace AUTS.Domain.ViewModels
|
||||
{
|
||||
public class ResponseQAAjaxSearch
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 数量
|
||||
/// </summary>
|
||||
public int numble { get; set; }
|
||||
|
||||
public QAResultVM qaResultVM { get; set; }
|
||||
|
||||
public List<QADataSearch> QADataSearchList { get; set; }
|
||||
|
||||
public ResponseQAAjaxSearch()
|
||||
{
|
||||
QADataSearchList = new List<QADataSearch>();
|
||||
}
|
||||
}
|
||||
|
||||
public class QADataSearch
|
||||
{
|
||||
/// <summary>
|
||||
/// 站ID
|
||||
/// </summary>
|
||||
public int StationID { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 站名
|
||||
/// </summary>
|
||||
public string StationName { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 时间
|
||||
/// </summary>
|
||||
public string StartTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 结果
|
||||
/// </summary>
|
||||
public bool TestResult { get; set; }
|
||||
}
|
||||
|
||||
public class QAResultVM
|
||||
{
|
||||
/// <summary>
|
||||
/// 序号集
|
||||
/// </summary>
|
||||
public string ProductNumbers { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 检测结果
|
||||
/// </summary>
|
||||
public bool TestResult { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 检测过程
|
||||
/// </summary>
|
||||
public string CheckProc { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 项目ID
|
||||
/// </summary>
|
||||
public int ProjectID { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// QA站ID
|
||||
/// </summary>
|
||||
public int QAStationID { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user