添加仓位

This commit is contained in:
18942506660
2023-10-28 17:30:46 +08:00
parent d852fb8714
commit c67ff92d1c
3 changed files with 14 additions and 0 deletions

View File

@@ -41,6 +41,10 @@ namespace WMS.Web.Core.Dto.OutStock
[Required(ErrorMessage = "仓库不能为空")] [Required(ErrorMessage = "仓库不能为空")]
public int StockId { get; set; } public int StockId { get; set; }
/// <summary> /// <summary>
/// 仓位ID
///</summary>
public int? SubStockId { get; set; }
/// <summary>
/// 出库数量 /// 出库数量
///</summary> ///</summary>
[Required(ErrorMessage = "出库数量不能为空")] [Required(ErrorMessage = "出库数量不能为空")]

View File

@@ -56,6 +56,11 @@ namespace WMS.Web.Domain.Entitys
[Column("StockId")] [Column("StockId")]
public int StockId { get; set; } public int StockId { get; set; }
/// <summary> /// <summary>
/// 仓位ID
///</summary>
[Column("SubStockId")]
public int? SubStockId { get; set; }
/// <summary>
/// 出库数量 /// 出库数量
///</summary> ///</summary>
[Column("Qty")] [Column("Qty")]

View File

@@ -55,6 +55,11 @@ namespace WMS.Web.Domain.Entitys
[Column("StockId")] [Column("StockId")]
public int StockId { get; set; } public int StockId { get; set; }
/// <summary> /// <summary>
/// 仓位ID
///</summary>
[Column("SubStockId")]
public int? SubStockId { get; set; }
/// <summary>
/// 应出库数量 /// 应出库数量
///</summary> ///</summary>
[Column("AccruedQty")] [Column("AccruedQty")]