调整实体

This commit is contained in:
tongfei
2023-10-30 09:26:39 +08:00
parent 5c21be85ac
commit ec6fab198f
2 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ namespace WMS.Web.Domain.Entitys
/// erp入库任务明细表 /// erp入库任务明细表
/// </summary> /// </summary>
[Serializable] [Serializable]
[Table("t_erp_outstock_task_details")] [Table("t_erp_instock_task_details")]
public class InStockTaskDetails public class InStockTaskDetails
{ {
/// <summary> /// <summary>

View File

@@ -128,7 +128,7 @@ namespace WMS.Web.Repositories.Configuration
}); });
builder.Entity<InStockTaskDetails>(ent => builder.Entity<InStockTaskDetails>(ent =>
{ {
ent.ToTable("t_erp_outstock_task_details"); ent.ToTable("t_erp_instock_task_details");
ent.HasKey(x => x.Id); ent.HasKey(x => x.Id);
}); });
#endregion #endregion