You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
391 B
9 lines
391 B
1 year ago
|
'use strict'
|
||
|
|
||
|
const groundDisasterInspection = require('../../controllers/groundDisasterInspection/groundDisasterInspection')
|
||
|
|
||
|
module.exports = function (app, router, opts) {
|
||
|
app.fs.api.logAttr['GET/card/detail/:card'] = { content: '根据sn号查询相应的点位信息和结构物信息', visible: true }
|
||
|
router.get('card/detail/:card', groundDisasterInspection.findDetailBySNCard)
|
||
|
}
|