const express = require('express'); const router = express.Router(); const statisticsController = require('../controllers/statisticsController'); // 路由 router.get('/rent', statisticsController.getRentStatistics); router.get('/room-status', statisticsController.getRoomStatusStatistics); router.get('/dashboard', statisticsController.getDashboardStatistics); router.get('/apartment-room-status', statisticsController.getApartmentRoomStatusStatistics); module.exports = router;