| | |
| | | R pageOtherBuild(@RequestBody ComMngStructOtherBuildVO comMngStructOtherBuildVO); |
| | | |
| | | /** |
| | | * 获取志愿者详情 |
| | | * |
| | | * @param id 志愿者信息 |
| | | * @return 增加结果 |
| | | */ |
| | | @GetMapping("getVolunteerById") |
| | | R getVolunteerById(@RequestParam("id")Long id); |
| | | |
| | | /** |
| | | * 增加志愿者 |
| | | * |
| | | * @param comMngVolunteerMngVO 志愿者信息 |
| | |
| | | |
| | | |
| | | /** |
| | | * 根据电话号获取店铺 |
| | | * @param phone 电话号 |
| | | */ |
| | | @GetMapping("/shop/getStoreByPhone") |
| | | R getStoreByPhone(@RequestParam("phone") String phone); |
| | | |
| | | /** |
| | | * 编辑店铺、启用、禁用 |
| | | * @param storeVO 数据 |
| | | * @param id 商铺id |
| | |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @PostMapping("/shop/changeShopGoodsStatus") |
| | | @GetMapping("/shop/changeShopGoodsStatus") |
| | | R changeStatus(@RequestParam("id") Long id,@RequestParam("status")Integer status); |
| | | /** |
| | | * 结果 |
| | |
| | | */ |
| | | @PostMapping("/shop/shopCartList") |
| | | R shopCartList(@RequestParam("userId") Long userId); |
| | | |
| | | /** |
| | | * 查询用户购物车数量 |
| | | * @param userId 用户id |
| | | * @return 用户购物车商品数量 |
| | | */ |
| | | @PostMapping("/shop/shopCartUserTotal") |
| | | R shopCartUserTotal(@RequestParam("userId") Long userId); |
| | | |
| | | /** |
| | | * 购物车添加 |
| | |
| | | */ |
| | | @PostMapping("/shop/pageShopFunds") |
| | | R pageShopFunds(@RequestBody PageComShopFundsSearchDTO pageComShopFundsSearchDTO); |
| | | |
| | | /** |
| | | * 微信支付订单回调 |
| | | * @param wxPayNotifyOrderDTO 订单支付回调参数 |
| | | */ |
| | | @PostMapping("/shop/wxOrderPayNotify") |
| | | void wxOrderPayNotify(@RequestBody WxPayNotifyOrderDTO wxPayNotifyOrderDTO); |
| | | |
| | | /** |
| | | * 点击去支付订单 |
| | | * @param orderPayDTO 请求参数 |
| | | * @return 支付对象 |
| | | */ |
| | | @PostMapping("/shop/wxPay") |
| | | R wxPay(@RequestBody OrderPayDTO orderPayDTO); |
| | | } |