优化接口

This commit is contained in:
tongfei
2024-03-27 11:25:24 +08:00
parent 7900bc347c
commit 57df8468fc
3 changed files with 4 additions and 4 deletions

View File

@@ -143,6 +143,6 @@ namespace WMS.Web.Core.Dto.InStockTask
/// <summary>
/// 物料对应的仓位有哪些
/// </summary>
public List<MaterialSubStock> MaterialSubStocks { get; set; } = new List<MaterialSubStock>();
public List<string> MaterialSubStocks { get; set; } = new List<string>();
}
}

View File

@@ -94,7 +94,7 @@ namespace WMS.Web.Core.Dto.InStockTask
/// <summary>
/// 物料对应的仓位有哪些
/// </summary>
public List<MaterialSubStock> MaterialSubStocks { get; set; } = new List<MaterialSubStock>();
public List<string> MaterialSubStocks { get; set; } = new List<string>();
}