This commit is contained in:
董海洋
2026-05-26 09:18:48 +08:00
parent 12b582ec64
commit ff40282dc1
19 changed files with 703 additions and 8 deletions
+8
View File
@@ -0,0 +1,8 @@
const Router = require('koa-router')
const priceListController = require('../controllers/price-list')
const router = new Router()
router.get('/:orderId', priceListController.getPriceList)
module.exports = router.routes()