增加商城的提示

This commit is contained in:
YunaiV
2023-02-04 20:38:51 +08:00
parent 111e944d3c
commit 53767614fe
22 changed files with 48 additions and 10 deletions

View File

@ -1,5 +1,5 @@
/**
* 属于 order 模块的 framework 封装
* 属于 trade 模块的 framework 封装
*
* @author 芋道源码
*/

View File

@ -6,19 +6,19 @@ import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/**
* order 模块的 web 组件的 Configuration
* trade 模块的 web 组件的 Configuration
*
* @author 芋道源码
*/
@Configuration(proxyBeanMethods = false)
public class OrderWebConfiguration {
public class TradeWebConfiguration {
/**
* order 模块的 API 分组
* trade 模块的 API 分组
*/
@Bean
public GroupedOpenApi orderGroupedOpenApi() {
return YudaoSwaggerAutoConfiguration.buildGroupedOpenApi("order");
public GroupedOpenApi tradeGroupedOpenApi() {
return YudaoSwaggerAutoConfiguration.buildGroupedOpenApi("trade");
}
}

View File

@ -1,4 +1,4 @@
/**
* order 模块的 web 配置
* trade 模块的 web 配置
*/
package cn.iocoder.yudao.module.trade.framework.web;