From eb29ee75c7f2f4154b7a3d0c475f94e0b964e996 Mon Sep 17 00:00:00 2001 From: Rodney Chen <rodney.chen@hotmail.com> Date: 星期三, 02 四月 2025 18:17:48 +0800 Subject: [PATCH] 优化事务基础写法 --- Tiger.Model.Net/Entitys/MES/ParameterEntity/BizMesWoParameter.cs | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 55 insertions(+), 0 deletions(-) diff --git a/Tiger.Model.Net/Entitys/MES/ParameterEntity/BizMesWoParameter.cs b/Tiger.Model.Net/Entitys/MES/ParameterEntity/BizMesWoParameter.cs index d1766df..06e0af3 100644 --- a/Tiger.Model.Net/Entitys/MES/ParameterEntity/BizMesWoParameter.cs +++ b/Tiger.Model.Net/Entitys/MES/ParameterEntity/BizMesWoParameter.cs @@ -48,6 +48,61 @@ public class ShippingOutput { public string Tag { get; set; } + public string ShipDoc { get; set; } public double ShippingQty { get; set; } } + public class ShippingInput + { + public string SN { get; set; } + public string wo { get; set; } + public string orgCode { get; set; } + } + public class GetWoNodeBatchCountInput + { + public string BatchNo { get; set; } + public string NodeName { get; set; } + } + + + /// <summary> + /// 鎻愪氦鍓嶆鏌ヨ緭鍑哄弬鏁� + /// </summary> + public class CheckCodeOutput + { + public MES_POSITION Position { get; set; } + public BIZ_MES_WO WorkOrder { get; set; } + public BAS_DEFECT Defect { get; set; } + } + + public class PrintWoPickList + { + public int LineNo { get; set; } + public string SapCode { get; set; } + public string ItemCode { get; set; } + public string ItemDesc { get; set; } + public double PickQty { get; set; } + public string LineRemark { get; set; } + public string WhCode { get; set; } + public string WhCode07 { get; set; } + public string Method { get; set; } + } + + public class WoFlowCardPrintJson + { + public string ID { get; set; } + public string OrderNo { get; set; } + public string Status { get; set; } + public string ItemCode { get; set; } + public string ItemDesc { get; set; } + public string Model { get; set; } + public string SapCode { get; set; } + public string Remark { get; set; } + public string SoRemark { get; set; } + public string MoRemark { get; set; } + public string Customer { get; set; } + public string DemandCode { get; set; } + public string RouteStr { get; set; } + public double Qty { get; set; } + public List<PrintWoPickList> Items { get; set; } = new List<PrintWoPickList>(); + } } -- Gitblit v1.9.3