feat:证照

This commit is contained in:
苏竹红
2024-10-10 10:27:09 +08:00
parent b5723032d2
commit 5be4014d16
2 changed files with 0 additions and 8 deletions

View File

@@ -71,7 +71,6 @@ public class BuildInformationServiceImpl implements BuildInformationService{
response.setJuridicalHandheldIdCardFront(informationDO.getJuridicalHandheldIdCardFront());
response.setJuridicalHandheldIdCardReverse(informationDO.getJuridicalHandheldIdCardReverse());
response.setSettlerIdCardNo(informationDO.getSettlerIdCardNo());
response.setSettlerName(informationDO.getSettlerName());
response.setSettlerBankPhotoUrl(informationDO.getSettlerBankPhotoUrl());
response.setSettlerIdCardFront(informationDO.getSettlerIdCardFront());
response.setSettlerIdCardReverse(informationDO.getSettlerIdCardReverse());

View File

@@ -39,13 +39,6 @@ public class PlatformBuildServiceImpl implements PlatformBuildService{
if(Objects.isNull(licenseTransactDO) || StringUtils.isBlank(licenseTransactDO.getLicenseLegalPerson())){
throw new ServiceException(ErrorCodeEnum.LICENSE_LEGAL_STAGE_FAIL);
}
BuildInformationDO informationDO = buildInformationDAO.selectOneByShopId(shopId);
if(Objects.isNull(informationDO) || StringUtils.isBlank(informationDO.getSettlerName())){
throw new ServiceException(ErrorCodeEnum.BUILD_INFORMATION_STAGE_FAIL);
}
if (licenseTransactDO.getLicenseLegalPerson().equals(informationDO.getSettlerName())){
return Boolean.TRUE;
}
return Boolean.FALSE;
}