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