import.js 529 B

123456789101112
  1. 'use strict';
  2. module.exports = app => {
  3. const { router, controller } = app;
  4. const profix = '/api/';
  5. const target = 'import';
  6. router.post(target, `${profix}${target}/examinee`, controller[target].examinee); // 考试相关
  7. router.post(target, `${profix}${target}/staff`, controller[target].staff); // 保安员
  8. router.post(target, `${profix}${target}/securityGuard`, controller[target].securityGuard); // 保安员
  9. router.post(target, `${profix}${target}/guardWork`, controller[target].guardWork); // 保安员
  10. };