| | |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | import java.util.HashMap; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | |
| | | return BeanConvertUtil.covertBeanList(communityMembers, CommunityMemberDto.class); |
| | | } |
| | | |
| | | @Override |
| | | public int getCommunityMemberCount(CommunityMemberDto communityMemberDto) { |
| | | logger.debug("getCommunityMemberCount:{}", JSONObject.toJSONString(communityMemberDto)); |
| | | |
| | | return communityServiceDaoImpl.getCommunityMemberCount(BeanConvertUtil.beanCovertMap(communityMemberDto)); |
| | | } |
| | | |
| | | public ICommunityServiceDao getCommunityServiceDaoImpl() { |
| | | return communityServiceDaoImpl; |
| | | } |