This commit is contained in:
tongfei
2024-03-02 19:44:50 +08:00
parent 11a4f87480
commit c3413e5c44
11 changed files with 389 additions and 15 deletions

View File

@@ -369,10 +369,17 @@ namespace WMS.Web.Repositories.Configuration
ent.ToTable("t_wms_box_mark_billno");
ent.HasKey(x => x.Id);
});
//物料
builder.Entity<Materials>(ent =>
{
ent.ToTable("t_wms_materials");
ent.HasKey(x => x.Id);
});
base.OnModelCreating(builder);
}
public DbSet<Materials> Materials { get; set; }
public DbSet<BoxMarkBillNo> BoxMarkBillNo { get; set; }
public DbSet<BoxMark> BoxMark { get; set; }
public DbSet<FileDownManager> FileDownManager { get; set; }