From e8aef02a3b8a6b6c5f0b13798f318aa7dc56e13f Mon Sep 17 00:00:00 2001 From: Ben Lin <maobin001@msn.com> Date: 星期三, 19 二月 2025 14:37:22 +0800 Subject: [PATCH] 雅达-添加生成条码的异步方法及相关参数类 --- Tiger.Model.Net/Entitys/MES/ParameterEntity/U9CParameter.cs | 33 +++++++++++++++++++++++++++++++++ 1 files changed, 33 insertions(+), 0 deletions(-) diff --git a/Tiger.Model.Net/Entitys/MES/ParameterEntity/U9CParameter.cs b/Tiger.Model.Net/Entitys/MES/ParameterEntity/U9CParameter.cs index 4aa8a11..9525622 100644 --- a/Tiger.Model.Net/Entitys/MES/ParameterEntity/U9CParameter.cs +++ b/Tiger.Model.Net/Entitys/MES/ParameterEntity/U9CParameter.cs @@ -120,6 +120,39 @@ public string EntityType { get; set; } } + public class BarcodeCreateByAssignQtyInput: BarcodeCreateInput + { + public int CreateBarCodeItemQty { get; set; } + public int LabelQty { get; set; } + } + + public class BarcodeCreateByAssignQtyParam + { + public string BarCodeRuleID { get; set; } + public List<CreateBarCodeEntitys> CreateBarCodeEntitys { get; set; } + public int CreateBarCodeItemQty { get; set; } + public int LabelQty { get; set; } + } + + public class CreateBarCodeEntitys + { + public string EntityID { get; set; } + public string EntityType { get; set; } = "UFIDA.U9.Complete.RCVRpt.RcvRptDocLine"; + } + + public class BarcodeCreateByAssignQtyResult : U9CBaseResult + { + public BarcodeCreateByAssignQtyData Data { get; set; } + } + + public class BarcodeCreateByAssignQtyData { + public string ErrorMessage { get; set; } + public string OtherID { get; set; } + public string CreatedBarCodes { get; set; } + public bool IsSuccess { get; set; } + public List<string> Data { get; set; } + } + public class MOKey { public string DocNo { get; set; } -- Gitblit v1.9.3