From 43b2af8956d54dc3a53f211c53d8af582806b6ba Mon Sep 17 00:00:00 2001 From: Rodney Chen <rodney.chen@hotmail.com> Date: 星期二, 08 四月 2025 11:18:58 +0800 Subject: [PATCH] 备料任务合并发料只适用于包装车间工单发料 备料任务增加根据发料类型,调用相应发料单据的ERP接口 --- 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