增加 ERP 系统的介绍

This commit is contained in:
YunaiV
2024-02-17 10:10:09 +08:00
parent eefd787de6
commit 94153cb59e
9 changed files with 79 additions and 19 deletions

View File

@ -0,0 +1,6 @@
/**
* 属于 erp 模块的 framework 封装
*
* @author 芋道源码
*/
package cn.iocoder.yudao.module.erp.framework;

View File

@ -0,0 +1,24 @@
package cn.iocoder.yudao.module.erp.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;
/**
* erp 模块的 web 组件的 Configuration
*
* @author 芋道源码
*/
@Configuration(proxyBeanMethods = false)
public class ErpWebConfiguration {
/**
* erp 模块的 API 分组
*/
@Bean
public GroupedOpenApi tradeGroupedOpenApi() {
return YudaoSwaggerAutoConfiguration.buildGroupedOpenApi("erp");
}
}

View File

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