index.js 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. import client from "./client";
  2. import user from "./user";
  3. import admin from "./admin";
  4. import permission from "./permission";
  5. // 新系统新接口文件
  6. import event from "./newApi/event";
  7. import product from "./newApi/product";
  8. import framework from "./newApi/framework";
  9. import file from "./newApi/file"
  10. import project from "./newApi/project"
  11. import common from "./newApi/common"
  12. import newReport from "./newApi/report"
  13. import patentMining from "./newApi/patentMining"
  14. import task2 from "./newApi/task"
  15. import importAndExport from './newApi/importAndExport'
  16. import patent from './newApi/patent'
  17. import custom from "./newApi/custom";
  18. import otherPatentInformation from "./newApi/otherPatentInformation";
  19. import translate from "./newApi/translate";
  20. import noveltySearch from "./newApi/noveltySearch";
  21. import IPREmail from "./newApi/IPREmail";
  22. export default {
  23. ...client,
  24. ...user,
  25. ...admin,
  26. ...permission,
  27. ...event,
  28. ...product,
  29. ...framework,
  30. ...file,
  31. ...project,
  32. ...common,
  33. ...newReport,
  34. ...patentMining,
  35. ...task2,
  36. ...importAndExport,
  37. ...patent,
  38. ...custom,
  39. ...otherPatentInformation,
  40. ...translate,
  41. ...noveltySearch,
  42. ...IPREmail
  43. }