'use strict'; const run = require('../../controllers/bigScreen/run'); module.exports = function (app, router, opts) { app.fs.api.logAttr['GET/bigScreen/patrol/record'] = { content: '', visible: false }; router.get('/bigScreen/patrol/record',run.findPatrolRecords) app.fs.api.logAttr['GET/bigScreen/picture/deploy/points'] = { content: '获取点位布设信息', visible: false }; router.get('bigScreen//picture/deploy/points', run.getDeployPoints); app.fs.api.logAttr['GET/bigScreen/project/all/points'] = { content: '获取结构物点位列表', visible: false }; router.get('/bigScreen/project/all/points', run.getProjectPoints); app.fs.api.logAttr['GET/bigScreen/project/planarGraph'] = { content: '获取结构物平面图数据', visible: false }; router.get('/bigScreen/project/planarGraph', run.findSingleGraph); app.fs.api.logAttr['GET/bigScreen/projects'] = { content: '获取结构物', visible: false }; router.get('/bigScreen/projects', run.findProjects) app.fs.api.logAttr['GET/bigScreen/newestRecord'] = { content: '获取最新巡检记录', visible: false }; router.get('/bigScreen/newestRecord', run.findNewestRecord) }