箱唛接口功能

This commit is contained in:
tongfei
2024-01-27 16:57:30 +08:00
parent 1d7792ecf3
commit 1780e84ee4
16 changed files with 1174 additions and 3 deletions

View File

@@ -351,11 +351,17 @@ namespace WMS.Web.Repositories.Configuration
});
#endregion
//箱唛表
builder.Entity<BoxMark>(ent =>
{
ent.ToTable("t_wms_box_mark");
ent.HasKey(x => x.Id);
});
base.OnModelCreating(builder);
}
public DbSet<BoxMark> BoxMark { get; set; }
public DbSet<FileDownManager> FileDownManager { get; set; }
public DbSet<SerialNumbers> SerialNumbers { get; set; }
public DbSet<ErpOpsSyncDate> ErpOpsSyncDate { get; set; }