集成 Go-View 大屏设计器

This commit is contained in:
YunaiV
2023-02-07 23:08:14 +08:00
parent daef663f58
commit fb45a70bce
4 changed files with 100 additions and 87 deletions

View File

@ -32,7 +32,14 @@ public class DefaultController {
"/admin-api/promotion/**"}) // 营销中心
public CommonResult<Boolean> mall404() {
return CommonResult.error(NOT_IMPLEMENTED.getCode(),
"[商城 yudao-module-mp - 已禁用][参考 https://doc.iocoder.cn/mall/build/ 开启]");
"[商城系统 yudao-module-mall - 已禁用][参考 https://doc.iocoder.cn/mall/build/ 开启]");
}
@RequestMapping(value = {"/admin-api/report/**",
"/jmreport/**"})
public CommonResult<Boolean> report404() {
return CommonResult.error(NOT_IMPLEMENTED.getCode(),
"[报表模块 yudao-module-report - 已禁用][参考 https://doc.iocoder.cn/report/ 开启]");
}
}