diff --git a/API/Wood.Service/Datas/SupplierEmployeeDtService.cs b/API/Wood.Service/Datas/SupplierEmployeeDtService.cs index a6bb2b5..b1e71ab 100644 --- a/API/Wood.Service/Datas/SupplierEmployeeDtService.cs +++ b/API/Wood.Service/Datas/SupplierEmployeeDtService.cs @@ -104,7 +104,8 @@ namespace Wood.Service.Datas } else { - + empDtObj.UId = firstObj.UId; + empDtObj.CreationTime = CommonHelper.CurrentTime; var ret = await base.Update(empDtObj); } } diff --git a/API/Wood.Service/Datas/SupplierInfoDtService.cs b/API/Wood.Service/Datas/SupplierInfoDtService.cs index a673528..c93c52c 100644 --- a/API/Wood.Service/Datas/SupplierInfoDtService.cs +++ b/API/Wood.Service/Datas/SupplierInfoDtService.cs @@ -102,6 +102,8 @@ namespace Wood.Service.Datas } else { + empDtObj.UId = firstObj.UId; + empDtObj.CreationTime = CommonHelper.CurrentTime; var ret = await base.Update(empDtObj); } } diff --git a/API/Wood.Service/Datas/SupplierProProcessEquipmentDtService.cs b/API/Wood.Service/Datas/SupplierProProcessEquipmentDtService.cs index e58a1ab..f237114 100644 --- a/API/Wood.Service/Datas/SupplierProProcessEquipmentDtService.cs +++ b/API/Wood.Service/Datas/SupplierProProcessEquipmentDtService.cs @@ -102,6 +102,8 @@ namespace Wood.Service.Datas } else { + empDtObj.UId = firstObj.UId; + empDtObj.CreationTime = CommonHelper.CurrentTime; var ret = await base.Update(empDtObj); } }