| | |
| | | * @return |
| | | */ |
| | | @GetMapping("/evaluate/getList") |
| | | public R volunteerMerchantGetList(@RequestParam("userId") int pageNum, |
| | | @RequestParam("userId") int pageSize, |
| | | public R volunteerMerchantGetList(@RequestParam("pageNum") int pageNum, |
| | | @RequestParam("pageSize") int pageSize, |
| | | @RequestParam("communityId") String communityId, |
| | | @RequestParam("merchantId") String merchantId) |
| | | { |
| | | if(StringUtils.isEmpty(communityId)) |
| | | { |
| | | communityId=getCommunityId()+""; |
| | | } |
| | | if(StringUtils.isEmpty(merchantId)) |
| | | { |
| | | return R.fail("商家id不能为空"); |
| | | } |
| | | return communityService.volunteerMerchantGetList(pageNum,pageSize,communityId,merchantId); |
| | | } |
| | | |