'use strict'; const network = require('../../controllers/analysis/network'); module.exports = function (app, router, opts) { app.fs.api.logAttr['GET/organizations/:pepProjectId/struc'] = { content: '获取项目下的结构物信息', visible: true }; router.get('/organizations/:pepProjectId/struc', network.getOrganizationsStruc) // app.fs.api.logAttr['GET/systemAvailability'] = { content: '获取系统可用性', visible: true }; // router.get('/systemAvailability', operationData.getSystemAvailability) // app.fs.api.logAttr['GET/problemType'] = { content: '获取故障类型', visible: true }; // router.get('/problemType', operationData.getProblemType) // app.fs.api.logAttr['GET/operationsPersonnel'] = { content: '获取运维人员', visible: true }; // router.get('/operationsPersonnel', operationData.getOperationsPersonnel) }