From a8e17146ca46945d9c0ad15f2d3e18e69299a3cc Mon Sep 17 00:00:00 2001 From: Ben Lin <maobin001@msn.com> Date: 星期一, 24 三月 2025 15:04:02 +0800 Subject: [PATCH] 新增 BinInfoList 属性及相关类 --- Tiger.Model.Net/Entitys/MES/ParameterEntity/U9CParameter.cs | 12 ++++++++++-- 1 files changed, 10 insertions(+), 2 deletions(-) diff --git a/Tiger.Model.Net/Entitys/MES/ParameterEntity/U9CParameter.cs b/Tiger.Model.Net/Entitys/MES/ParameterEntity/U9CParameter.cs index 19dce21..8e8b3bd 100644 --- a/Tiger.Model.Net/Entitys/MES/ParameterEntity/U9CParameter.cs +++ b/Tiger.Model.Net/Entitys/MES/ParameterEntity/U9CParameter.cs @@ -233,6 +233,13 @@ { public TransQty TransQty { get; set; } public string ASNLineKey { get; set; } + public List<BinInfoList> BinInfoList { get; set; } + } + + public class BinInfoList { + public Location Bin { get; set; } + public double LocationQtySU { get; set; } + public double LocationQtyTU { get; set; } } public class TransQty @@ -240,7 +247,7 @@ /// <summary> /// 鏈鏀惰揣鏁伴噺1 /// </summary> - public string m_amount1 { get; set; } + public double m_amount1 { get; set; } public m_uOM1 m_uOM1 { get; set; } } @@ -275,7 +282,7 @@ /// </summary> public class CreateRcvBySrcASNInput : U9CBaseInput { - public List<CreateRcvBySrcASNParam> CreateRcvBySrcASNParam { get; set; } + public CreateRcvBySrcASNParam CreateRcvBySrcASNParam { get; set; } } #region 鏃犳潵婧� @@ -291,6 +298,7 @@ /// 渚涘簲鍟� /// </summary> public string Supplier { get; set; } + public string RcvDocType { get; set; } public List<RcvLine> RcvLines { get; set; } } -- Gitblit v1.9.3