|
|
@@ -61,6 +61,12 @@ public class OwnerInnerServiceSMOImpl extends BaseServiceSMO implements IOwnerIn
|
|
|
return null;
|
|
|
}*/
|
|
|
|
|
|
+ int page = ownerDto.getPage();
|
|
|
+
|
|
|
+ if (page != PageDto.DEFAULT_PAGE) {
|
|
|
+ ownerDto.setPage((page - 1) * ownerDto.getRow());
|
|
|
+ }
|
|
|
+
|
|
|
Map ownerInfo = BeanConvertUtil.beanCovertMap(ownerDto);
|
|
|
ownerInfo.put("communityId",ownerDto.getCommunityId());
|
|
|
ownerInfo.put("ownerTypeCd", OwnerTypeConstant.OWNER);
|
|
|
@@ -154,6 +160,11 @@ public class OwnerInnerServiceSMOImpl extends BaseServiceSMO implements IOwnerIn
|
|
|
communityMemberDto.setCommunityId(ownerDto.getCommunityId());
|
|
|
communityMemberDto.setMemberTypeCd(CommunityMemberTypeConstant.OWNER);
|
|
|
return communityInnerServiceSMOImpl.getCommunityMemberCount(communityMemberDto);*/
|
|
|
+ int page = ownerDto.getPage();
|
|
|
+
|
|
|
+ if (page != PageDto.DEFAULT_PAGE) {
|
|
|
+ ownerDto.setPage((page - 1) * ownerDto.getRow());
|
|
|
+ }
|
|
|
|
|
|
Map ownerInfo = BeanConvertUtil.beanCovertMap(ownerDto);
|
|
|
ownerInfo.put("communityId",ownerDto.getCommunityId());
|