调整接口

This commit is contained in:
tongfei
2023-12-13 14:10:24 +08:00
parent 20fff099fd
commit 988190a13c
14 changed files with 267 additions and 160 deletions

View File

@@ -22,6 +22,10 @@ namespace WMS.Web.Domain.Entitys
/// </summary>
public string BillNo { get; set; }
/// <summary>
/// 出入库方式1按箱2按产品
/// </summary>
public InventoryInOutMethod Method { get; set; }
/// <summary>
/// 类型1为入库回退下架2为出库回退上架
/// </summary>
public BackRecordType Type { get; set; }
@@ -34,6 +38,19 @@ namespace WMS.Web.Domain.Entitys
/// </summary>
public DateTime CreateTime { get; set; }
/// <summary>
/// 组织编码
/// </summary>
public string OrgCode { get; set; }
/// <summary>
/// 仓库编码
/// </summary>
public string StockCode { get; set; }
/// <summary>
/// 仓位ID
/// </summary>
public int SubStockId { get; set; }
/// <summary>
/// 明细
/// </summary>

View File

@@ -27,7 +27,7 @@ namespace WMS.Web.Domain.Entitys
/// </summary>
public InstockType Type { get; set; }
/// <summary>
/// 入库方式1按箱2按产品
/// 入库方式1按箱2按产品
/// </summary>
public InventoryInOutMethod Method { get; set; }
/// <summary>