即时库存调整
This commit is contained in:
26
src/WMS.Web.Core/Dto/Erp/ErpInventoryDto.cs
Normal file
26
src/WMS.Web.Core/Dto/Erp/ErpInventoryDto.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace WMS.Web.Core.Dto.Erp
|
||||
{
|
||||
public class ErpInventoryDto
|
||||
{
|
||||
/// <summary>
|
||||
/// 物料ID
|
||||
/// </summary>
|
||||
public int MaterialId { get; set; }
|
||||
/// <summary>
|
||||
/// 组织编码
|
||||
/// </summary>
|
||||
public string OrgCode { get; set; }
|
||||
/// <summary>
|
||||
/// 仓库
|
||||
/// </summary>
|
||||
public string StockCode { get; set; }
|
||||
/// <summary>
|
||||
/// 数量
|
||||
/// </summary>
|
||||
public decimal Qty { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -114,11 +114,11 @@ namespace WMS.Web.Core.Dto.Erp.TakeStock
|
||||
///// </summary>
|
||||
//[JsonProperty("FAcctQty")]
|
||||
//public decimal BeforeQty { get; set; }
|
||||
///// <summary>
|
||||
///// 盘点实际数量(实际仓库数量)
|
||||
///// </summary>
|
||||
//[JsonProperty("FCountQty")]
|
||||
//public decimal AfterQty { get; set; }
|
||||
/// <summary>
|
||||
/// 盘点实际数量(实际仓库数量)
|
||||
/// </summary>
|
||||
[JsonProperty("FCountQty")]
|
||||
public decimal AfterQty { get; set; }
|
||||
/// <summary>
|
||||
/// 盘盈数量
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user