✨ 2.0.1 版本发布准备
This commit is contained in:
parent
3b2200ad80
commit
21452af780
@ -0,0 +1,24 @@
|
||||
package cn.iocoder.yudao.module.crm.framework.web.config;
|
||||
|
||||
import cn.iocoder.yudao.framework.swagger.config.YudaoSwaggerAutoConfiguration;
|
||||
import org.springdoc.core.models.GroupedOpenApi;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
|
||||
/**
|
||||
* crm 模块的 web 组件的 Configuration
|
||||
*
|
||||
* @author 芋道源码
|
||||
*/
|
||||
@Configuration(proxyBeanMethods = false)
|
||||
public class CrmWebConfiguration {
|
||||
|
||||
/**
|
||||
* crm 模块的 API 分组
|
||||
*/
|
||||
@Bean
|
||||
public GroupedOpenApi crmGroupedOpenApi() {
|
||||
return YudaoSwaggerAutoConfiguration.buildGroupedOpenApi("crm");
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* trade 模块的 web 配置
|
||||
*/
|
||||
package cn.iocoder.yudao.module.crm.framework.web;
|
Loading…
Reference in New Issue
Block a user