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.
 
 
 
 

8 lines
391 B

'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)
}