diff --git a/src/WMS.Web.Domain/Entitys/OutStock.cs b/src/WMS.Web.Domain/Entitys/OutStock.cs
index 3e4812c9..48073de9 100644
--- a/src/WMS.Web.Domain/Entitys/OutStock.cs
+++ b/src/WMS.Web.Domain/Entitys/OutStock.cs
@@ -29,7 +29,7 @@ namespace WMS.Web.Domain.Entitys
/// 单据类型
///
[Column("Type")]
- public OutStockType Type { get; set; } = OutStockType.Sal;
+ public InstockType Type { get; set; } = InstockType.Sal;
///
/// 创建人
diff --git a/src/WMS.Web.Domain/Entitys/OutStockTask.cs b/src/WMS.Web.Domain/Entitys/OutStockTask.cs
index cb7184f5..0dad32d5 100644
--- a/src/WMS.Web.Domain/Entitys/OutStockTask.cs
+++ b/src/WMS.Web.Domain/Entitys/OutStockTask.cs
@@ -34,7 +34,7 @@ namespace WMS.Web.Domain.Entitys
/// 单据类型
///
[Column("Type")]
- public OutStockType Type { get; set; } = OutStockType.Sal;
+ public InstockType Type { get; set; } = InstockType.Sal;
///
/// 操作人(出库人)
///
diff --git a/src/WMS.Web.Domain/Values/InstockType.cs b/src/WMS.Web.Domain/Values/InstockType.cs
index 7ec06e3c..d1a077ba 100644
--- a/src/WMS.Web.Domain/Values/InstockType.cs
+++ b/src/WMS.Web.Domain/Values/InstockType.cs
@@ -35,5 +35,30 @@ namespace WMS.Web.Domain.Values
///
[EnumRemark("组装拆卸入库")]
Assembled =5,
+ ///
+ /// 销售出库
+ ///
+ [EnumRemark("销售出库")]
+ Sal = 6,
+ ///
+ /// 其他出库
+ ///
+ [EnumRemark("其他出库")]
+ Miscellaneous_Out = 7,
+ ///
+ /// 直接调拨出库
+ ///
+ [EnumRemark("直接调拨出库")]
+ Stkdirecttransfers_Out = 8,
+ ///
+ /// 分步式出库
+ ///
+ [EnumRemark("分步式出库")]
+ StktransferInst_Out = 9,
+ ///
+ /// 组装拆卸出库
+ ///
+ [EnumRemark("组装拆卸出库")]
+ Assembled_Out = 10,
}
}