| | |
| | | |
| | | |
| | | |
| | | /******************************************************************************************************************* |
| | | * |
| | | * |
| | | * 社区折扣 |
| | | * |
| | | * |
| | | ******************************************************************************************************************/ |
| | | |
| | | |
| | | /** |
| | | * 分页查询 |
| | | * @param |
| | | * @return |
| | | */ |
| | | @GetMapping("/VolunteerMerchant/community/discount/getList") |
| | | public R CommunityDiscountgetList(@RequestParam("communityId") String communityId); |
| | | |
| | | /** |
| | | * 新增 |
| | | * @param |
| | | * @return |
| | | */ |
| | | @PostMapping("/VolunteerMerchant/community/discount/insert") |
| | | public R CommunityDiscountinsert(@RequestBody VolunteerCommunityDiscountVO item); |
| | | |
| | | |
| | | @PostMapping("/VolunteerMerchant/community/discount/update") |
| | | public R CommunityDiscountupdate(@RequestBody VolunteerCommunityDiscountVO item); |
| | | |
| | | |
| | | @DeleteMapping("/VolunteerMerchant/community/discount/delete") |
| | | public R CommunityDiscountdelete(@RequestParam("id") String id); |
| | | |
| | | |
| | | |
| | | |
| | | /** |
| | | * 报名/取消报名社区活动 |
| | | * 金汇社区专用 |
| | | * @param signactivityVO |
| | | * 报名参数 |
| | | * @return 报名 取消报名 结果 |
| | | */ |
| | | @PostMapping("/jinhui/jinhuiSignActivity") |
| | | public R jinhuiSignActivity(@RequestBody SignactivityVO signactivityVO); |
| | | |
| | | |
| | | |
| | | /** |
| | | * 用户签到 |
| | | * 金汇社区专用 |
| | | * @param comActActRegistVO 签到参数 |
| | | * @return 签到结果 |
| | | */ |
| | | @PostMapping("/jinhui/jinhuiActivitySignIn") |
| | | public R jinhuiActivitySignIn(@RequestBody ComActActRegistVO comActActRegistVO); |
| | | |
| | | |
| | | |
| | | } |