From 1ae0c9b5402cd4109b776124353b7a3229082e8d Mon Sep 17 00:00:00 2001 From: me Date: Thu, 5 Jun 2025 17:02:14 +0800 Subject: [PATCH] 1 --- API/Wood.Service/Datas/SupplierEmployeeDtService.cs | 3 ++- API/Wood.Service/Datas/SupplierInfoDtService.cs | 2 ++ API/Wood.Service/Datas/SupplierProProcessEquipmentDtService.cs | 2 ++ 3 files changed, 6 insertions(+), 1 deletion(-) 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); } }