公共接口

This commit is contained in:
tongfei
2023-11-06 13:43:13 +08:00
parent 2cb6d0f82a
commit 6788ae39bf
6 changed files with 98 additions and 10 deletions

View File

@@ -60,9 +60,9 @@ namespace WMS.Web.Repositories
return result.Data.ToList();
}
public async Task<List<UcStockResponse>> GetSubUcStockAsync(string systemCode, string name, int companyId)
public async Task<List<UcSubStockResponse>> GetSubUcStockAsync(string systemCode, string name, int companyId)
{
var result = await _singleDataService.GetSysConfigData<ResultList<UcStockResponse>, SystemCodeRequest>
var result = await _singleDataService.GetSysConfigData<ResultList<UcSubStockResponse>, SystemCodeRequest>
(new SystemCodeRequest(systemCode, name, companyId),
SysConfigAction.GetWmsSubWarehouseBySystemCodeAndNameAndCompany);
if (!result.Success)