using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AUTS.Domain.ViewModels
{
public class RequestQASubmit
{
///
/// 序号
///
public string NumberSubmit { get; set; }
///
/// QA_过程
///
public string QA_CheckProcSubmit { get; set; }
///
/// QA_结果
///
public bool QA_TestResultSubmit { get; set; }
public string QARemarks { get; set; }
public int QA_ProjectID { get; set; }
public int QA_QAStationID { get; set; }
}
}