db创建2
This commit is contained in:
@@ -830,6 +830,18 @@
|
||||
wms入库单-仓储接口
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:WMS.Web.Domain.Infrastructure.ITransactionRepositories.GetTransaction">
|
||||
<summary>
|
||||
获取事务 用来处理即时库存
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:WMS.Web.Domain.Infrastructure.ITransactionRepositories.CommitTransaction(System.Boolean,Microsoft.EntityFrameworkCore.Storage.IDbContextTransaction)">
|
||||
<summary>
|
||||
获取事务 用来处理即时库存
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:WMS.Web.Domain.IService.IChangeMoveBoxService">
|
||||
<summary>
|
||||
改箱 移箱服务
|
||||
|
||||
@@ -191,9 +191,13 @@ namespace WMS.Web.Repositories.Configuration
|
||||
public DbSet<OutStockTask> OutStockTask { get; set; }
|
||||
public DbSet<TakeStock> TakeStock { get; set; }
|
||||
public DbSet<InStock> Instock { get; set; }
|
||||
public DbSet<InStockDetails> InStockDetails { get; set; }
|
||||
public DbSet<InstockTask> InstockTask { get; set; }
|
||||
public DbSet<InstockTaskDetails> InstockTaskDetails { get; set; }
|
||||
public DbSet<BackRecord> BackRecord { get; set; }
|
||||
public DbSet<BackRecordDetails> BackRecordDetails { get; set; }
|
||||
public DbSet<BoxInventory> BoxInventory { get; set; }
|
||||
public DbSet<BoxInventoryDetails> BoxInventoryDetails { get; set; }
|
||||
public DbSet<InventoryDetails> InventoryDetails { get; set; }
|
||||
public DbSet<InventoryInOutDetails> InventoryInOutDetails { get; set; }
|
||||
}
|
||||
|
||||
@@ -4,6 +4,7 @@ using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WMS.Web.Core.Dto;
|
||||
using WMS.Web.Core.Internal.Results;
|
||||
using WMS.Web.Domain.Infrastructure;
|
||||
using WMS.Web.Repositories.Configuration;
|
||||
|
||||
@@ -26,8 +27,10 @@ namespace WMS.Web.Repositories
|
||||
_serviceProvider = serviceProvider;
|
||||
}
|
||||
|
||||
public async Task<InStockQueryResponse> GetPagedListAsync(InStockQueryRequest dto)
|
||||
public async Task<ResultPagedList<InStockQueryResponse>> GetPagedList(InStockQueryRequest dto)
|
||||
{
|
||||
//var query=_context.
|
||||
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user