| | |
| | | @RequestParam(value = "name", required = false) String name, |
| | | @RequestParam(value = "unmountType", required = false) String unmountType) |
| | | { |
| | | if(StringUtils.isEmpty(name)) |
| | | { |
| | | name=null; |
| | | } |
| | | if(StringUtils.isEmpty(unmountType)) |
| | | { |
| | | unmountType=null; |
| | | } |
| | | |
| | | return communityService.queryList(pageNum,pageSize,name,unmountType); |
| | | } |
| | | |
| | |
| | | @RequestParam(value = "actityBeginTime", required = false) Date actityBeginTime, |
| | | @RequestParam(value = "actityEndTime", required = false) Date actityEndTime) |
| | | { |
| | | |
| | | if(StringUtils.isEmpty(name)) |
| | | { |
| | | name=null; |
| | | } |
| | | |
| | | return communityService.volunteerQueryList(pageNum, pageSize, name, acState, acType, actityBeginTime, actityEndTime); |
| | | } |
| | | |