From 6373a5ee748898cb5db477035dca66c6e4194dfc Mon Sep 17 00:00:00 2001 From: kazelee <1847801760@qq.com> Date: 星期三, 23 七月 2025 17:34:46 +0800 Subject: [PATCH] 产品入库添加物料名称描述数量输入框和货位解绑功能, 手动添加物料信息功能 --- api/ApiModel.cs | 17 +++++++++++++++-- 1 files changed, 15 insertions(+), 2 deletions(-) diff --git a/api/ApiModel.cs b/api/ApiModel.cs index 7b65e18..ee9e5a2 100644 --- a/api/ApiModel.cs +++ b/api/ApiModel.cs @@ -180,11 +180,19 @@ public string Row { get; set; } } + public class AddCgDetailInfo { + public string LocCode { get; set; } + public string CntrCode { get; set; } + public string ItemCode { get; set; } + public string ItemName { get; set; } + public string ItemShortDesc { get; set; } + public int ItemCount { get; set; } + } + public class InboundDataInfo { /// <summary> /// 璧风偣璐т綅 /// </summary> - [JsonProperty("StartLoc")] public string StartLoc { get; set; } /// <summary> @@ -194,7 +202,9 @@ public string Row { get; set; } public string ItemCode { get; set; } - //public string ItemName { get; set; } + public string ItemName { get; set; } + public string ItemShortDesc { get; set; } + public int ItemCount { get; set; } } public class SelectLocationInfo { @@ -227,6 +237,9 @@ public string startLoc { get; set; } public string endLoc { get; set; } public string ItemCode { get; set; } + public string ItemName { get; set; } + public string ItemShortDesc { get; set; } + public int ItemCount { get; set; } } public class UnbindLocInfo { -- Gitblit v1.9.1