查询意向协议信息

This commit is contained in:
guohb
2024-04-03 13:56:11 +08:00
parent 7081338963
commit 750e5e9924
2 changed files with 1 additions and 4 deletions

View File

@@ -26,7 +26,7 @@
id,
partner_id,
line_id,
sign_name
sign_name,
mobile,
sex,
id_card_front,

View File

@@ -89,13 +89,10 @@ public class IntentAgreementServiceImpl extends LineFlowService implements Inten
throw new ServiceException(PARAMS_VALIDATE_ERROR);
}
SigningBaseInfoDO signingBaseInfoDO = intentAgreementMapper.selectByPartnerIdOrLineId(partnerId, lineId);
if (Objects.isNull(signingBaseInfoDO)) {
log.info("getMiniIntentAgreement signingBaseInfoDO IS NULL......");
return null;
}
SigningBaseInfoResponse response = SigningBaseInfoResponse.from(signingBaseInfoDO);
MemberQuestionDO byLineId = joinIntentionMapper.getByLineId(lineId);
response.setType(byLineId.getJoinType());