配置测试数据

This commit is contained in:
tongfei
2023-10-26 17:48:41 +08:00
parent 918e4d203b
commit 5ab9b50308
8 changed files with 258 additions and 20 deletions

View File

@@ -2,6 +2,8 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using WMS.Web.Core.Dto;
using WMS.Web.Domain.Infrastructure;
using WMS.Web.Repositories.Configuration;
@@ -23,5 +25,10 @@ namespace WMS.Web.Repositories
_mapper = mapper;
_serviceProvider = serviceProvider;
}
public async Task<InStockQueryResponse> GetPagedListAsync(InStockQueryRequest dto)
{
return null;
}
}
}