db创建2

This commit is contained in:
tongfei
2023-10-26 18:07:20 +08:00
parent 3263403748
commit 0d88d4a35c
3 changed files with 20 additions and 1 deletions

View File

@@ -830,6 +830,18 @@
wms入库单-仓储接口 wms入库单-仓储接口
</summary> </summary>
</member> </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"> <member name="T:WMS.Web.Domain.IService.IChangeMoveBoxService">
<summary> <summary>
改箱 移箱服务 改箱 移箱服务

View File

@@ -191,9 +191,13 @@ namespace WMS.Web.Repositories.Configuration
public DbSet<OutStockTask> OutStockTask { get; set; } public DbSet<OutStockTask> OutStockTask { get; set; }
public DbSet<TakeStock> TakeStock { get; set; } public DbSet<TakeStock> TakeStock { get; set; }
public DbSet<InStock> Instock { get; set; } public DbSet<InStock> Instock { get; set; }
public DbSet<InStockDetails> InStockDetails { get; set; }
public DbSet<InstockTask> InstockTask { get; set; } public DbSet<InstockTask> InstockTask { get; set; }
public DbSet<InstockTaskDetails> InstockTaskDetails { get; set; }
public DbSet<BackRecord> BackRecord { get; set; } public DbSet<BackRecord> BackRecord { get; set; }
public DbSet<BackRecordDetails> BackRecordDetails { get; set; }
public DbSet<BoxInventory> BoxInventory { get; set; } public DbSet<BoxInventory> BoxInventory { get; set; }
public DbSet<BoxInventoryDetails> BoxInventoryDetails { get; set; }
public DbSet<InventoryDetails> InventoryDetails { get; set; } public DbSet<InventoryDetails> InventoryDetails { get; set; }
public DbSet<InventoryInOutDetails> InventoryInOutDetails { get; set; } public DbSet<InventoryInOutDetails> InventoryInOutDetails { get; set; }
} }

View File

@@ -4,6 +4,7 @@ using System.Collections.Generic;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using WMS.Web.Core.Dto; using WMS.Web.Core.Dto;
using WMS.Web.Core.Internal.Results;
using WMS.Web.Domain.Infrastructure; using WMS.Web.Domain.Infrastructure;
using WMS.Web.Repositories.Configuration; using WMS.Web.Repositories.Configuration;
@@ -26,8 +27,10 @@ namespace WMS.Web.Repositories
_serviceProvider = serviceProvider; _serviceProvider = serviceProvider;
} }
public async Task<InStockQueryResponse> GetPagedListAsync(InStockQueryRequest dto) public async Task<ResultPagedList<InStockQueryResponse>> GetPagedList(InStockQueryRequest dto)
{ {
//var query=_context.
return null; return null;
} }
} }