diff --git a/src/WMS.Web.Api/wwwroot/WMS.Web.Domain.xml b/src/WMS.Web.Api/wwwroot/WMS.Web.Domain.xml
index 3c4fd84f..f2a7be56 100644
--- a/src/WMS.Web.Api/wwwroot/WMS.Web.Domain.xml
+++ b/src/WMS.Web.Api/wwwroot/WMS.Web.Domain.xml
@@ -1009,6 +1009,11 @@
单据编号
+
+
+ 出库方式 1 按箱 2 按产品
+
+
单据类型
@@ -1074,7 +1079,7 @@
明细
-
+
创建(需要在明细都生成后最后调用)
diff --git a/src/WMS.Web.Domain/Entitys/OutStock.cs b/src/WMS.Web.Domain/Entitys/OutStock.cs
index b6715c98..fea38b68 100644
--- a/src/WMS.Web.Domain/Entitys/OutStock.cs
+++ b/src/WMS.Web.Domain/Entitys/OutStock.cs
@@ -32,7 +32,7 @@ namespace WMS.Web.Domain.Entitys
[Column("BillNo")]
public string BillNo { get; set; }
///
- /// 出货方式
+ /// 出库方式 1 按箱 2 按产品
///
[Column("Method")]
public InventoryInOutMethod Method { get; set; } = InventoryInOutMethod.Box;