| | |
| | | R<TParkingRecord> getRecordById(@RequestParam("id") Long siteId); |
| | | |
| | | @PostMapping(value = "/t-parking-lot/getRecordAmount") |
| | | R<BigDecimal> getRecordAmount(@RequestParam("sixBefore") LocalDate sixBefore); |
| | | R<BigDecimal> getRecordAmount(); |
| | | |
| | | |
| | | /** |
| | |
| | | R<TParkingLot> getParkingLotByAppKey(@RequestParam("appKey") String appKey); |
| | | @PostMapping(value = "/t-parking-lot/getSiteIdByOrderId") |
| | | R<Integer> getSiteIdByOrderId(@RequestParam("id") Long id); |
| | | @PostMapping(value = "/t-parking-lot/getSiteIdAll") |
| | | R<List<TParkingRecord>> getSiteIdAll(); |
| | | } |