diff --git a/AMESCoreStudio.Web/ViewModels/QRS/QRS010ViewModel.cs b/AMESCoreStudio.Web/ViewModels/QRS/QRS010ViewModel.cs new file mode 100644 index 00000000..bae4134b --- /dev/null +++ b/AMESCoreStudio.Web/ViewModels/QRS/QRS010ViewModel.cs @@ -0,0 +1,80 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace AMESCoreStudio.Web.ViewModels.QRS +{ + public class QRS010ViewModel + { + public QRS010ViewModel() + { + YieldDatas = new List(); + } + + public List YieldDatas { get; set; } + } + + public class YieldData + { + /// + /// 工單ID + /// + public int WipID { get; set; } + + /// + /// 工單號碼 + /// + public string WipNO { get; set; } + + /// + /// 工單數量 + /// + public int PlanQTY { get; set; } + + /// + /// 流程站別ID + /// + public int RuleStationID { get; set; } + + /// + /// 站別ID + /// + public int StationID { get; set; } + + /// + /// 站別名稱 + /// + public string StationDesc { get; set; } + + /// + /// 料號 + /// + public string ItemNO { get; set; } + + /// + /// 線別 + /// + public string LineDesc { get; set; } + + /// + /// 機種 + /// + public string ModelNO { get; set; } + + /// + /// 首次良品數量 + /// + public int FirstCnt { get; set; } + + /// + /// 過站數量 + /// + public int PassCnt { get; set; } + + /// + /// 良率 + /// + public double Yield { get; set; } + } +}