| | |
| | | import com.java110.core.base.smo.BaseServiceSMO; |
| | | import com.java110.dto.PageDto; |
| | | import com.java110.dto.fee.FeeConfigDto; |
| | | import com.java110.dto.floor.FloorDto; |
| | | import com.java110.dto.inspection.InspectionPlanDto; |
| | | import com.java110.dto.parking.ParkingAreaDto; |
| | | import com.java110.dto.repair.RepairSettingDto; |
| | | import com.java110.dto.room.RoomDto; |
| | | import com.java110.dto.fee.FeeDto; |
| | | import com.java110.dto.owner.OwnerAttrDto; |
| | |
| | | } |
| | | |
| | | @Override |
| | | public List<ParkingAreaDto> queryCommunityParkingTree(@RequestBody ParkingAreaDto parkingAreaDto) { |
| | | //校验是否传了 分页信息 |
| | | List<ParkingAreaDto> parkingAreaDtos = BeanConvertUtil.covertBeanList( |
| | | reportCommunityServiceDaoImpl.queryCommunityParkingTree(BeanConvertUtil.beanCovertMap(parkingAreaDto)), |
| | | ParkingAreaDto.class); |
| | | |
| | | return parkingAreaDtos; |
| | | } |
| | | |
| | | @Override |
| | | public List<RepairSettingDto> queryCommunityRepairTree(@RequestBody RepairSettingDto repairSettingDto) { |
| | | //校验是否传了 分页信息 |
| | | List<RepairSettingDto> repairSettingDtos = BeanConvertUtil.covertBeanList( |
| | | reportCommunityServiceDaoImpl.queryCommunityRepairTree(BeanConvertUtil.beanCovertMap(repairSettingDto)), |
| | | RepairSettingDto.class); |
| | | |
| | | return repairSettingDtos; |
| | | } |
| | | |
| | | @Override |
| | | public List<InspectionPlanDto> queryCommunityInspectionTree(@RequestBody InspectionPlanDto inspectionPlanDto) { |
| | | //校验是否传了 分页信息 |
| | | List<InspectionPlanDto> inspectionPlanDtos = BeanConvertUtil.covertBeanList( |
| | | reportCommunityServiceDaoImpl.queryCommunityInspectionTree(BeanConvertUtil.beanCovertMap(inspectionPlanDto)), |
| | | InspectionPlanDto.class); |
| | | |
| | | return inspectionPlanDtos; |
| | | } |
| | | |
| | | @Override |
| | | public List<FloorDto> queryCommunityFloorTree(@RequestBody FloorDto floorDto) { |
| | | //校验是否传了 分页信息 |
| | | List<FloorDto> floorDtos = BeanConvertUtil.covertBeanList( |
| | | reportCommunityServiceDaoImpl.queryCommunityFloorTree(BeanConvertUtil.beanCovertMap(floorDto)), |
| | | FloorDto.class); |
| | | |
| | | return floorDtos; |
| | | } |
| | | |
| | | @Override |
| | | public int queryHisOwnerCarCount(@RequestBody OwnerCarDto ownerCarDto) { |
| | | return reportCommunityServiceDaoImpl.queryHisOwnerCarCount(BeanConvertUtil.beanCovertMap(ownerCarDto)); |
| | | } |