| | |
| | | } |
| | | |
| | | /** |
| | | * 分页查询 |
| | | * 分页查询商家分类 |
| | | * @param |
| | | * @return |
| | | */ |
| | |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 获取商家详情 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @GetMapping("/VolunteerMerchant/getById") |
| | | public R volunteerMerchantGetById(@RequestParam("id") String id) |
| | | { |
| | | return communityService.volunteerMerchantGetById(id); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 是否是商家 |
| | | * @return |
| | | */ |
| | | @GetMapping("/VolunteerMerchant/isMerchant") |
| | | public R isMerchant(@RequestParam("userId") String userId) |
| | | { |
| | | return communityService.isMerchant(userId); |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | /** |
| | | * 社区取消订单 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @GetMapping("/order/communityCancellation") |
| | | public R communityCancellation(@RequestParam("id") String id) |
| | | { |
| | | return communityService.communityCancellation(id); |
| | | } |
| | | |
| | | |
| | | |