统一命名规范
This commit is contained in:
@@ -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; }
|
||||
|
||||
Reference in New Issue
Block a user