| | |
| | | |
| | | @ResponseBody |
| | | @PostMapping("/api/useBenefit/indexOfAppUser") |
| | | @ApiOperation(value = "福利主页", tags = {"APP-使用福利"}) |
| | | @ApiOperation(value = "福利主页【2.0】", tags = {"APP-使用福利"}) |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(name = "Authorization", value = "Bearer +token", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9....."), |
| | | @ApiImplicitParam(name = "lat", value = "经度", dataType = "string"), |
| | |
| | | @ApiImplicitParam(name = "Authorization", value = "Bearer +token", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9....."), |
| | | }) |
| | | public ResultUtil<List<Goods>> pointsMallList(MallRequest request) { |
| | | // try { |
| | | System.out.println("======request========" + request); |
| | | return ResultUtil.success(tauService.queryAppUserIntegral(request)); |
| | | // }catch (Exception e){ |
| | | // return ResultUtil.runErr(); |
| | | // } |
| | | } |
| | | |
| | | |
| | |
| | | @PostMapping("/base/coupon/weChatPaymentCouponCallback") |
| | | public void weChatPaymentCouponCallback(HttpServletRequest request, HttpServletResponse response){ |
| | | try { |
| | | System.err.println("进入回调"); |
| | | Map<String, String> map = payMoneyUtil.weixinpayCallback(request); |
| | | if(null != map){ |
| | | String code = map.get("out_trade_no"); |