| | |
| | | import com.java110.core.base.smo.BaseServiceSMO; |
| | | import com.java110.dto.PageDto; |
| | | import com.java110.dto.RoomDto; |
| | | import com.java110.dto.fee.FeeDto; |
| | | import com.java110.dto.owner.OwnerAttrDto; |
| | | import com.java110.dto.owner.OwnerCarDto; |
| | | import com.java110.dto.owner.OwnerDto; |
| | |
| | | } |
| | | |
| | | @Override |
| | | public int queryHisOwnerCount(OwnerDto ownerDto) { |
| | | public int queryHisOwnerCount(@RequestBody OwnerDto ownerDto) { |
| | | return reportCommunityServiceDaoImpl.queryHisOwnerCount(BeanConvertUtil.beanCovertMap(ownerDto)); |
| | | } |
| | | |
| | | @Override |
| | | public List<OwnerDto> queryHisOwners(OwnerDto ownerDto) { |
| | | public List<OwnerDto> queryHisOwners(@RequestBody OwnerDto ownerDto) { |
| | | int page = ownerDto.getPage(); |
| | | |
| | | if (page != PageDto.DEFAULT_PAGE) { |
| | |
| | | return ownerDtos; |
| | | } |
| | | |
| | | @Override |
| | | public int queryHisFeeCount(@RequestBody FeeDto feeDto) { |
| | | return reportCommunityServiceDaoImpl.queryHisFeeCount(BeanConvertUtil.beanCovertMap(feeDto)); |
| | | } |
| | | |
| | | @Override |
| | | public List<FeeDto> queryHisFees(@RequestBody FeeDto feeDto) { |
| | | int page = feeDto.getPage(); |
| | | |
| | | if (page != PageDto.DEFAULT_PAGE) { |
| | | feeDto.setPage((page - 1) * feeDto.getRow()); |
| | | } |
| | | |
| | | List<FeeDto> feeDtos = BeanConvertUtil.covertBeanList( |
| | | reportCommunityServiceDaoImpl.queryHisFees(BeanConvertUtil.beanCovertMap(feeDto)), |
| | | FeeDto.class); |
| | | |
| | | return feeDtos; |
| | | } |
| | | |
| | | /** |
| | | * 获取批量userId |
| | | * |