db创建2
This commit is contained in:
@@ -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