| | |
| | | |
| | | |
| | | |
| | | /******************************************************************************************************************* |
| | | * |
| | | * |
| | | * 社区折扣 |
| | | * |
| | | * |
| | | ******************************************************************************************************************/ |
| | | |
| | | |
| | | /** |
| | | * 分页查询 |
| | | * @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); |
| | | |
| | | |
| | | |