old mode 100644
new mode 100755
| | |
| | | for (ImportRoomFee importRoomFee : tmpImportCarFees) { |
| | | if (ownerCarDto.getCarNum().equals(importRoomFee.getCarNum())) { |
| | | importRoomFee.setCarId(ownerCarDto.getCarId()); |
| | | importRoomFee.setOwnerId(ownerCarDto.getOwnerId()); |
| | | importRoomFee.setOwnerName(ownerCarDto.getOwnerName()); |
| | | importRoomFee.setOwnerLink(ownerCarDto.getLink()); |
| | | } |
| | | } |
| | | } |
| | | return tmpImportCarFees; |
| | | } |
| | | |
| | | @Override |
| | | public long queryOwnerParkingSpaceCount(@RequestBody OwnerCarDto ownerCarDto) { |
| | | return ownerCarServiceDaoImpl.queryOwnerParkingSpaceCount(BeanConvertUtil.beanCovertMap(ownerCarDto)); |
| | | } |
| | | |
| | | public IOwnerCarServiceDao getOwnerCarServiceDaoImpl() { |
| | | return ownerCarServiceDaoImpl; |
| | | } |