| | |
| | | @PostMapping("/grantIntegral") |
| | | public R grantIntegral(@RequestBody GrantIntegral grantIntegral); |
| | | |
| | | /************************************************************************************************************** |
| | | * |
| | | * |
| | | * 积分明细记录 |
| | | * |
| | | *****************************************************************************************************************/ |
| | | /** |
| | | * 获取单个详情 |
| | | * |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @GetMapping("/VolunteerIntegralRecord/getId") |
| | | public R VolunteerIntegralRecordGetId(@RequestParam("id") String id); |
| | | |
| | | /** |
| | | * 分页查询 |
| | | * |
| | | * @param |
| | | * @return |
| | | */ |
| | | @GetMapping("/VolunteerIntegralRecord/getId") |
| | | public R VolunteerIntegralRecordGetList(int pageNum, int pageSize, |
| | | @RequestParam("userId") String userId); |
| | | |
| | | /** |
| | | * 新增 |
| | | * |
| | | * @param |
| | | * @return |
| | | */ |
| | | @PostMapping("/VolunteerIntegralRecord/insertVolunteer") |
| | | public R VolunteerIntegralRecordInsertVolunteer(@RequestBody() VolunteerIntegralRecordVO volunteerIntegralRecordVO); |
| | | |
| | | /** |
| | | * 便捷 |
| | | * @param |
| | | * @return |
| | | */ |
| | | @PostMapping("/VolunteerIntegralRecord/updateId") |
| | | public R VolunteerIntegralRecordUpdateId(@RequestBody() VolunteerIntegralRecordVO volunteerIntegralRecordVO); |
| | | |
| | | /** |
| | | * 删除 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @DeleteMapping("/VolunteerIntegralRecord/deleteId") |
| | | public R VolunteerIntegralRecordDeleteId(@RequestParam("id") String id); |
| | | |
| | | |
| | | } |