| | |
| | | @RequestParam(value = "orderNumber", required = false) String orderNumber, |
| | | @RequestParam(value = "goodsName", required = false) String goodsName, |
| | | @RequestParam(value = "condition", required = false) String condition, |
| | | @RequestParam(value = "userName", required = false) String userName) |
| | | @RequestParam(value = "userName", required = false) String userName, |
| | | @RequestParam(value = "communityId", required = false) String communityId) |
| | | { |
| | | |
| | | if(StringUtils.isEmpty(communityId)) |
| | | { |
| | | communityId=getCommunityId()+""; |
| | | } |
| | | return communityService.getList(pageNum,pageSize,goodsId,orderNumber,goodsName, |
| | | condition,userName,null,getLoginUserInfo().getUserId()+"","1"); |
| | | condition,userName,communityId,getLoginUserInfo().getUserId()+"","1"); |
| | | } |
| | | |
| | | /** |
| | |
| | | return communityService.conditionData(id); |
| | | } |
| | | |
| | | /************************************************************************************* |
| | | * |
| | | * 路北社区商家模块 |
| | | * |
| | | **************************************************************************************/ |
| | | /** |
| | | * 分页查询 |
| | | * @param |
| | | * @return |
| | | */ |
| | | @GetMapping("/getList") |
| | | public R volunteerMerchantGetList(@RequestParam("pageNum") int pageNum, |
| | | @RequestParam("pageSize") int pageSize, |
| | | @RequestParam(value = "merchantState", required = false) String merchantState, |
| | | @RequestParam(value = "merchantType", required = false) String merchantType, |
| | | @RequestParam(value = "name", required = false) String name) |
| | | { |
| | | return communityService.volunteerMerchantGetList(pageNum, pageSize,merchantState,merchantType,name,getCommunityId()+""); |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | } |