| | |
| | | import org.springframework.cloud.openfeign.FallbackFactory; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDate; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | public R<TParkingRecord> getRecordById(Long siteId) { |
| | | return R.fail("通过id查询停车场记录:" + throwable.getMessage()); |
| | | } |
| | | |
| | | @Override |
| | | public R<BigDecimal> getRecordAmount(LocalDate sixBefore) { |
| | | return null; |
| | | } |
| | | |
| | | @Override |
| | | public R<TParkingLot> getParkingLotByAppKey(String appKey) { |
| | | return R.fail("根据停车场标识查询失败:" + throwable.getMessage()); |
| | | } |
| | | }; |
| | | } |
| | | } |