From 8a09a1fabfa8840288c10f6c58ff4a6d519e66d7 Mon Sep 17 00:00:00 2001 From: Ben Lin <maobin001@msn.com> Date: 星期五, 21 二月 2025 15:43:23 +0800 Subject: [PATCH] 雅达-更新条码生成逻辑,注释多处代码块 --- Tiger.Model.Net/Entitys/MES/ParameterEntity/U9CParameter.cs | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 57 insertions(+), 0 deletions(-) diff --git a/Tiger.Model.Net/Entitys/MES/ParameterEntity/U9CParameter.cs b/Tiger.Model.Net/Entitys/MES/ParameterEntity/U9CParameter.cs index f9d2bea..1e6c2af 100644 --- a/Tiger.Model.Net/Entitys/MES/ParameterEntity/U9CParameter.cs +++ b/Tiger.Model.Net/Entitys/MES/ParameterEntity/U9CParameter.cs @@ -97,6 +97,63 @@ public int DocState { get; set; } = 1; } + public class BarcodeCreateInput + { + public string RevDocId { get; set; } + public string RevDocLineId { get; set; } + public string userId { get; set; } + public string token { get; set; } + public bool IsLogin { get; set; } + } + + public class BarcodeCreateParam + { + public List<CreateEntityKeys> CreateEntityKeys { get; set; } + public bool IsCreateHeadBarCode { get; set; } + public string BarCodeRuleCode { get; set; } + public int GenerateCount { get; set; } + public int BCQty { get; set; } + } + + public class CreateEntityKeys + { + public string ID { get; set; } + 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