fc02ab7a by xiaojie

【数据资产】

1、连接器入驻作废旧数据报错
1 parent eb9384fd
......@@ -122,6 +122,8 @@ public class DataPortServiceImpl implements DataPortService {
LambdaUpdateWrapper<MfEnterprise> updateWrapper = new LambdaUpdateWrapper<>();
updateWrapper.set(MfEnterprise::getTrustedIdentityCredential, url);
updateWrapper.set(MfEnterprise::getCredentialTime, new Date());
updateWrapper.set(MfEnterprise::getAuthenticationTime, new Date());
updateWrapper.set(MfEnterprise::getAuthenticationState, "Y");
updateWrapper.eq(MfEnterprise::getGuid, entity.getGuid());
mfEnterpriseService.update(updateWrapper);
......@@ -187,7 +189,9 @@ public class DataPortServiceImpl implements DataPortService {
LambdaUpdateWrapper<MfEnterprise> updateWrapper = new LambdaUpdateWrapper<>();
updateWrapper.set(MfEnterprise::getTrustedIdentityCredential, url);
updateWrapper.set(MfEnterprise::getCredentialTime, new Date());
updateWrapper.eq(MfEnterprise::getGuid, entity.getGuid());
updateWrapper.set(MfEnterprise::getAuthenticationTime, new Date());
updateWrapper.set(MfEnterprise::getAuthenticationState, "Y");
updateWrapper.eq(MfEnterprise::getGuid, entity.getSourceGuid());
mfEnterpriseService.update(updateWrapper);
}
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!