| | |
| | | import com.panzhihua.common.model.vos.community.VolunteerIntegralRecordVO; |
| | | import com.panzhihua.service_community.service.VolunteerIntegralRecordService; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.annotation.Resource; |
| | |
| | | * @param |
| | | * @return |
| | | */ |
| | | @GetMapping("/getId") |
| | | public R VolunteerIntegralRecordGetList(int pageNum, int pageSize, |
| | | @RequestParam("userId") String userId) |
| | | @GetMapping("/getList") |
| | | public R VolunteerIntegralRecordGetList(@RequestParam("pageNum") int pageNum, |
| | | @RequestParam("pageSize") int pageSize, |
| | | @RequestParam("userId") String userId) |
| | | { |
| | | return volunteerIntegralRecordService.getList(pageNum,pageSize,userId); |
| | | } |