From e9afd62bbebbe7366dbf96a4aafa521e206a614b Mon Sep 17 00:00:00 2001 From: tongfei <244188119@qq.com> Date: Mon, 13 Nov 2023 14:23:47 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=A5=E5=BA=93=E5=8D=95=E6=98=8E=E7=BB=86?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E4=BB=93=E4=BD=8D=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/WMS.Web.Api/wwwroot/WMS.Web.Domain.xml | 5 +++++ src/WMS.Web.Domain/Entitys/InStockDetails.cs | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/src/WMS.Web.Api/wwwroot/WMS.Web.Domain.xml b/src/WMS.Web.Api/wwwroot/WMS.Web.Domain.xml index 7f51f88b..7f9634d6 100644 --- a/src/WMS.Web.Api/wwwroot/WMS.Web.Domain.xml +++ b/src/WMS.Web.Api/wwwroot/WMS.Web.Domain.xml @@ -407,6 +407,11 @@ 仓库编码 + + + 仓位ID + + 数量 diff --git a/src/WMS.Web.Domain/Entitys/InStockDetails.cs b/src/WMS.Web.Domain/Entitys/InStockDetails.cs index f7e21e62..70a6181f 100644 --- a/src/WMS.Web.Domain/Entitys/InStockDetails.cs +++ b/src/WMS.Web.Domain/Entitys/InStockDetails.cs @@ -46,6 +46,10 @@ namespace WMS.Web.Domain.Entitys /// public string StockCode { get; set; } /// + /// 仓位ID + /// + public int SubStockId { get; set; } + /// /// 数量 /// public decimal Qty { get; set; }