调试

上级 4a1adc92
流水线 #8517 已失败 于阶段
in 13 秒
...@@ -60,5 +60,5 @@ public interface UserAppApi { ...@@ -60,5 +60,5 @@ public interface UserAppApi {
List<UserAccountSimpleDTO> feignListAppUserAccount(@ApiParam(value = "账号查询QO", required = true) @RequestBody UserAccountQO userAccountQO, @RequestHeader("token") String token); List<UserAccountSimpleDTO> feignListAppUserAccount(@ApiParam(value = "账号查询QO", required = true) @RequestBody UserAccountQO userAccountQO, @RequestHeader("token") String token);
@GetMapping("/userapp/message/timeTypeById") @GetMapping("/userapp/message/timeTypeById")
Integer timeTypeById(@RequestParam Integer typeId, @RequestHeader("token") String token, @RequestHeader HttpServletRequest request); Integer timeTypeById(@RequestParam Integer typeId, @RequestParam Integer userId, @RequestHeader("token") String token);
} }
...@@ -76,7 +76,7 @@ public class WechatPayServiceImpl implements WechatPayService { ...@@ -76,7 +76,7 @@ public class WechatPayServiceImpl implements WechatPayService {
throw new RuntimeException("服务器内部错误!"); throw new RuntimeException("服务器内部错误!");
} }
if(orderRequestParamsVO.getChatType() != null && orderRequestParamsVO.getOrderPort() == 7){ if(orderRequestParamsVO.getChatType() != null && orderRequestParamsVO.getOrderPort() == 7){
Integer integer = userAppApi.timeTypeById(orderRequestParamsVO.getChatType(), request.getHeader("token"),request ) ; Integer integer = userAppApi.timeTypeById(orderRequestParamsVO.getChatType(), userAccountId, request.getHeader("token"));
orderRequestParamsVO.setAmount(integer); orderRequestParamsVO.setAmount(integer);
} }
Config config = wxConfigUtils.createConfig(); Config config = wxConfigUtils.createConfig();
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论