|
|
@ -292,7 +292,9 @@ public class ActSignInQrCodeServiceImpl extends BaseServiceImpl<ActSignInQrCodeD |
|
|
|
private ActUserRelationDTO checkSignInUser(String userId, String actId) { |
|
|
|
// 校验用户
|
|
|
|
ActUserRelationDTO actUserRelationDto = actUserRelationService.getActUserRelationId(userId, actId, null); |
|
|
|
if (null == actUserRelationDto) { |
|
|
|
if (null == actUserRelationDto |
|
|
|
|| StringUtils.isEmpty(actUserRelationDto.getId()) |
|
|
|
|| StringUtils.isEmpty(actUserRelationDto.getStatus())) { |
|
|
|
throw new RenException(ActSignInQrCodeConstant.ACT_SIGN_IN_MSG_NOT_SIGN_UP); |
|
|
|
} |
|
|
|
switch (actUserRelationDto.getStatus()) { |
|
|
|