| | |
| | | Map<String, Object> info = new HashMap<>(); |
| | | info.put("carNums", carNums.toArray(new String[carNums.size()])); |
| | | info.put("communityId", tmpImportCarFees.get(0).getCommunityId()); |
| | | info.put("statusCd", "0"); |
| | | List<OwnerCarDto> ownerCarDtos = BeanConvertUtil.covertBeanList(ownerCarServiceDaoImpl.getOwnerCarInfo(info), OwnerCarDto.class); |
| | | |
| | | for (OwnerCarDto ownerCarDto : ownerCarDtos) { |
| | |
| | | return tmpImportCarFees; |
| | | } |
| | | |
| | | @Override |
| | | public long queryOwnerParkingSpaceCount(@RequestBody OwnerCarDto ownerCarDto) { |
| | | return ownerCarServiceDaoImpl.queryOwnerParkingSpaceCount(BeanConvertUtil.beanCovertMap(ownerCarDto)); |
| | | } |
| | | |
| | | public IOwnerCarServiceDao getOwnerCarServiceDaoImpl() { |
| | | return ownerCarServiceDaoImpl; |
| | | } |