| | |
| | | @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); |
| | | } |
| | | |
| | |
| | | * @return |
| | | */ |
| | | IPage<VolunteerMerchantEvaluate> getList(Page page, |
| | | @Param("id") String communityId, |
| | | @Param("id") String merchantId); |
| | | @Param("communityId") String communityId, |
| | | @Param("merchantId") String merchantId); |
| | | |
| | | /** |
| | | * 获取详情 |