Commit 231c698f authored by 麻笑宇's avatar 麻笑宇

Merge remote-tracking branch 'origin/develop_tzs_bugfix' into develop_tzs_bugfix

parents 451cee9b 0b5bce2c
...@@ -680,6 +680,12 @@ public class DataHandlerServiceImpl { ...@@ -680,6 +680,12 @@ public class DataHandlerServiceImpl {
updateWrapper.set(IdxBizJgProjectContraption::getAddress, useInfo.getAddress()); updateWrapper.set(IdxBizJgProjectContraption::getAddress, useInfo.getAddress());
projectContraptionService.update(null, updateWrapper); projectContraptionService.update(null, updateWrapper);
} }
LambdaUpdateWrapper<JgUseRegistration> updateWrapper = new LambdaUpdateWrapper<>();
updateWrapper.set(JgUseRegistration::getProjectContraptionId, useRegistration.getProjectContraptionId());
updateWrapper.eq(BaseEntity::getSequenceNbr, useRegistration.getSequenceNbr());
useRegistrationService.update(null, updateWrapper);
} }
} }
List<JgUseRegistration> useRegistrationsAfter = getUseRegisterOfError(); List<JgUseRegistration> useRegistrationsAfter = getUseRegisterOfError();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment