bug fix
This commit is contained in:
@@ -104,7 +104,7 @@ public class AppInviteController {
|
||||
return Result.error("用户不存在");
|
||||
}
|
||||
InviteMoney inviteMoney = inviteMoneyService.selectInviteMoneyByUserId(userId);
|
||||
Integer inviteCount = inviteService.selectInviteCount(-1, userId);
|
||||
Integer inviteCount = inviteService.selectInviteCount2(userEntity.getInvitationCode());
|
||||
Integer inviteSignCount = inviteService.selectInviteSignCount(userEntity.getInvitationCode());
|
||||
Map<String, Double> earningMap = userMoneyDetailsService.queryUserTotalEarning(userId);
|
||||
Map<String, Object> result = new HashMap<>();
|
||||
|
||||
@@ -81,5 +81,7 @@ public class SupplyAgainSignRewardTask implements ITask {
|
||||
//存入余额 钱
|
||||
userMoneyService.updateAmount(1, inviteeUserId, Double.parseDouble(amount));
|
||||
}
|
||||
|
||||
log.info("补发奖励结束");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user