| | |
| | | @GetMapping("/VolunteerIntegralMerchant/queryList") |
| | | public R VolunteerIntegralMerchantQueryList(@RequestParam("pageNum") int pageNum, |
| | | @RequestParam("pageSize") int pageSize, |
| | | @RequestParam("name") String name, |
| | | @RequestParam("state") String state); |
| | | @RequestParam(value = "name", required = false) String name, |
| | | @RequestParam(value = "state", required = false) String state); |
| | | |
| | | /** |
| | | * 新增 |
| | |
| | | public R VolunteerIntegralMerchantUpdateById(@RequestBody VolunteerIntegralMerchantVO vimVO); |
| | | |
| | | @DeleteMapping("/VolunteerIntegralMerchant/deleteById") |
| | | public R VolunteerIntegralMerchantDeleteById(@RequestParam String id); |
| | | public R VolunteerIntegralMerchantDeleteById(@RequestParam("id") String id); |
| | | |
| | | |
| | | |