|
@@ -141,8 +141,10 @@ public class GameBackPolicyServiceImpl extends ServiceImpl<GameBackPolicyMapper,
|
|
|
ResultVO<Boolean> result = userActionSetRpc.reportByAppId(dataReportOfAppIdRpcDTO);
|
|
|
if (result.getCode() == HttpStatus.HTTP_OK) {
|
|
|
gameTencentOrder.setIsBack(BackStatusEnum.FAILED.getBackStatus());
|
|
|
+ gameTencentOrder.setBackLog("回传成功");
|
|
|
gameTencentOrderService.updateById(gameTencentOrder);
|
|
|
|
|
|
+ gameTencentBackLog.setBackLog("回传成功");
|
|
|
gameTencentBackLogService.save(gameTencentBackLog);
|
|
|
} else {
|
|
|
log.error("回传腾讯订单失败,失败原因:{}", result.getMsg());
|
|
@@ -211,8 +213,10 @@ public class GameBackPolicyServiceImpl extends ServiceImpl<GameBackPolicyMapper,
|
|
|
ResultVO<Boolean> result = userActionSetRpc.reportByAppId(dataReportOfAppIdRpcDTO);
|
|
|
if (result.getCode() == HttpStatus.HTTP_OK) {
|
|
|
gameTencentUser.setIsBack(BackStatusEnum.SUCCESS.getBackStatus());
|
|
|
+ gameTencentUser.setBackLog("回传成功");
|
|
|
gameTencentUserService.updateById(gameTencentUser);
|
|
|
|
|
|
+ gameTencentBackLog.setBackLog("回传成功");
|
|
|
gameTencentBackLogService.save(gameTencentBackLog);
|
|
|
} else {
|
|
|
log.error("回传腾讯用户失败,失败原因:{}", result.getMsg());
|