修复bug

This commit is contained in:
18942506660
2023-11-16 11:44:06 +08:00
parent dab5b29c53
commit 83c866aeee
2 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ namespace WMS.Web.Domain.Entitys
/// 对应金蝶的明细
/// </summary>
[Serializable]
[Table("t_erp_outstock_erp_details")]
[Table("t_wms_outstock_erp_details")]
public class OutStockErpDetails : EntityBase
{
public OutStockErpDetails() { }

View File

@@ -107,7 +107,7 @@ namespace WMS.Web.Repositories.Configuration
builder.Entity<OutStockErpDetails>(ent =>
{
ent.ToTable("t_erp_outstock_erp_details");
ent.ToTable("t_wms_outstock_erp_details");
ent.HasKey(x => x.Id);
});
#endregion