DefaultController.java 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. package cn.iocoder.yudao.server.controller;
  2. import cn.iocoder.yudao.framework.common.pojo.CommonResult;
  3. import org.springframework.web.bind.annotation.RequestMapping;
  4. import org.springframework.web.bind.annotation.RestController;
  5. import static cn.iocoder.yudao.framework.common.exception.enums.GlobalErrorCodeConstants.NOT_IMPLEMENTED;
  6. /**
  7. * 默认 Controller,解决部分 module 未开启时的 404 提示。
  8. * 例如说,/bpm/** 路径,工作流
  9. *
  10. * @author 芋道源码
  11. */
  12. @RestController
  13. public class DefaultController {
  14. @RequestMapping("/admin-api/bpm/**")
  15. public CommonResult<Boolean> bpm404() {
  16. return CommonResult.error(NOT_IMPLEMENTED.getCode(),
  17. "[工作流模块 yudao-module-bpm - 已禁用][参考 https://doc.iocoder.cn/bpm/ 开启]");
  18. }
  19. @RequestMapping("/admin-api/mp/**")
  20. public CommonResult<Boolean> mp404() {
  21. return CommonResult.error(NOT_IMPLEMENTED.getCode(),
  22. "[微信公众号 yudao-module-mp - 已禁用][参考 https://doc.iocoder.cn/mp/build/ 开启]");
  23. }
  24. @RequestMapping(value = {"/admin-api/product/**", // 商品中心
  25. "/admin-api/trade/**", // 交易中心
  26. "/admin-api/promotion/**"}) // 营销中心
  27. public CommonResult<Boolean> mall404() {
  28. return CommonResult.error(NOT_IMPLEMENTED.getCode(),
  29. "[商城系统 yudao-module-mall - 已禁用][参考 https://doc.iocoder.cn/mall/build/ 开启]");
  30. }
  31. @RequestMapping("/admin-api/erp/**")
  32. public CommonResult<Boolean> erp404() {
  33. return CommonResult.error(NOT_IMPLEMENTED.getCode(),
  34. "[ERP 模块 yudao-module-erp - 已禁用][参考 https://doc.iocoder.cn/erp/build/ 开启]");
  35. }
  36. @RequestMapping("/admin-api/crm/**")
  37. public CommonResult<Boolean> crm404() {
  38. return CommonResult.error(NOT_IMPLEMENTED.getCode(),
  39. "[CRM 模块 yudao-module-crm - 已禁用][参考 https://doc.iocoder.cn/crm/build/ 开启]");
  40. }
  41. @RequestMapping(value = {"/admin-api/report/**"})
  42. public CommonResult<Boolean> report404() {
  43. return CommonResult.error(NOT_IMPLEMENTED.getCode(),
  44. "[报表模块 yudao-module-report - 已禁用][参考 https://doc.iocoder.cn/report/ 开启]");
  45. }
  46. @RequestMapping(value = {"/admin-api/pay/**"})
  47. public CommonResult<Boolean> pay404() {
  48. return CommonResult.error(NOT_IMPLEMENTED.getCode(),
  49. "[支付模块 yudao-module-pay - 已禁用][参考 https://doc.iocoder.cn/pay/build/ 开启]");
  50. }
  51. @RequestMapping(value = {"/admin-api/ai/**"})
  52. public CommonResult<Boolean> ai404() {
  53. return CommonResult.error(NOT_IMPLEMENTED.getCode(),
  54. "[AI 大模型 yudao-module-ai - 已禁用][参考 https://doc.iocoder.cn/ai/build/ 开启]");
  55. }
  56. }