From 753576481479afac43e9d448ed51599a86855223 Mon Sep 17 00:00:00 2001 From: Marvin Date: Tue, 22 Mar 2022 17:06:50 +0800 Subject: [PATCH] =?UTF-8?q?1.=E8=A1=A5=E4=BC=A0=E8=89=AF=E7=8E=87=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ViewModels/QRS/QRS010ViewModel.cs | 80 +++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 AMESCoreStudio.Web/ViewModels/QRS/QRS010ViewModel.cs 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; } + } +}