统一命名规范

This commit is contained in:
tongfei
2023-10-26 15:23:37 +08:00
parent e8bd8db0dc
commit 9867447523
4 changed files with 23 additions and 23 deletions

View File

@@ -98,7 +98,7 @@ namespace WMS.Web.Repositories.Configuration
#endregion
#region
builder.Entity<InstockOrder>(ent =>
builder.Entity<InStock>(ent =>
{
ent.ToTable("t_wms_instock");
ent.HasKey(x => x.Id);
@@ -108,7 +108,7 @@ namespace WMS.Web.Repositories.Configuration
.HasForeignKey(p => p.Fid)
.OnDelete(DeleteBehavior.Cascade);
});
builder.Entity<InstockOrderDetails>(ent =>
builder.Entity<InStockDetails>(ent =>
{
ent.ToTable("t_wms_instock_details");
ent.HasKey(x => x.Id);
@@ -190,7 +190,7 @@ namespace WMS.Web.Repositories.Configuration
public DbSet<OutStock> OutStock { get; set; }
public DbSet<OutStockTask> OutStockTask { get; set; }
public DbSet<TakeStock> TakeStock { get; set; }
public DbSet<InstockOrder> Instock { get; set; }
public DbSet<InStock> Instock { get; set; }
public DbSet<InstockTask> InstockTask { get; set; }
public DbSet<BackRecord> BackRecord { get; set; }
public DbSet<BoxInventory> BoxInventory { get; set; }