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.
13 lines
554 B
13 lines
554 B
'use strict';
|
|
|
|
const roadMaintenance = require('../../controllers/roadMaintenance');
|
|
|
|
module.exports = function (app, router, opts) {
|
|
|
|
app.fs.api.logAttr['GET/road/maintenance/cost/query'] = { content: '获取上月道路养护费用', visible: false };
|
|
router.get('/road/maintenance/cost/query', roadMaintenance.getLastMonthCost);
|
|
|
|
// app.fs.api.logAttr['GET/road/maintenance/cost/query'] = { content: '获取上月道路养护费用', visible: false };
|
|
// router.get('/road/maintenance/cost/query', roadMaintenance.getLastMonthCost);
|
|
|
|
}
|