Ai config

This commit is contained in:
董海洋
2026-05-26 13:37:55 +08:00
parent 55452a2d21
commit 0c7ed3498d
42 changed files with 1264 additions and 767 deletions
+12
View File
@@ -0,0 +1,12 @@
const Router = require('koa-router')
const specController = require('../controllers/goods-specs')
const router = new Router()
router.get('/', specController.getSpecs)
router.post('/', specController.createSpec)
router.put('/:id', specController.updateSpec)
router.delete('/:id', specController.deleteSpec)
router.post('/batch', specController.batchSave)
module.exports = router.routes()