|
|
@@ -83,10 +83,11 @@ public class UserServiceImpl implements IUserService {
|
|
|
resultRecord.setItemsQuantity(playerItemsVo.getQuantity());
|
|
|
|
|
|
}
|
|
|
- playerItemsVo = playerItemsMapper.selectPlayerItemsInfo(resultRecord.getId(), 1L);
|
|
|
- if(playerItemsVo!=null){
|
|
|
+
|
|
|
+ Long jiFenCount = playerItemsMapper.selectPlayerJiFenCount(resultRecord.getId());
|
|
|
+ if(jiFenCount!=null){
|
|
|
//参赛积分
|
|
|
- resultRecord.setPointsQuantity(playerItemsVo.getQuantity());
|
|
|
+ resultRecord.setPointsQuantity(jiFenCount);
|
|
|
}
|
|
|
}
|
|
|
|