多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
[TOC] ## 目录结构说明 ### 【源代码】sohelp-ele组件库目录 ``` sohelp-web\sohelp-web-element\sohelp-ele ``` ### sohelp-ele组件库源代码目录 ``` sohelp-demo\sohelp-element-demo\web\src\components\sohelp-ele ``` ### 【源代码】vFormDesigner设计器目录 ``` sohelp-web\sohelp-web-element\vform-designer ``` ### sohelp-vform组件库目录 ``` sohelp-demo\sohelp-element-demo\web\src\components\sohelp-vform ``` ## Maven POM 说明 POM Parent配置,所有的引擎都是继承以下配置包 ``` <parent> <groupId>net.sohelp.ide</groupId> <artifactId>sohelp-ide-parent</artifactId> <version>1.0.1</version> </parent> ``` | **引擎** | **名称** | **POM** | **参考文档** | | --- | --- |---| --- | | 基础工具类 sohelp-base | sohelp-base | net.sohelp.ide sohelp-base | 提供一些基础的工具类应用。例如加密,MD5算法。文件处理等 | | 大屏引擎 sohelp-datav | sohelp-datav | net.sohelp.ide sohelp-datav | | | 数据库引擎 sohelp-db | sohelp-db | net.sohelp.ide sohelp-db | 对数据库进行表结构进行创建、维护、CRUD方法管理、对外提供API进行数据的操作接口。 | | 业务引擎 sohelp-service | sohelp-service | net.sohelp.ide sohelp-service | 对一些常用的CRUD业务进行配置化,例如CRUD、上传、下载的业务配置 | | 界面引擎 sohelp-web | sohelp-web | net.sohelp.ide sohelp-web-base | 开发新的业务提供了些基础类,例如BaseController,权限配置、Token配置、JSON响应、MVC响应等基础引入 | | 报表引擎 sohelp-report | sohelp-report | net.sohelp.ide sohelp-report | | | 工作流引擎 sohelp-workflow | sohelp-workflow | net.sohelp.ide sohelp-workflow | | | 门户引擎 sohelp-portal | sohelp-portal | net.sohelp.ide sohelp-portal | | | 移动端引擎 sohelp-app | sohelp-app | net.sohelp.ide sohelp-app | | | 云端引擎 sohelp-cloud | sohelp-cloud| net.sohelp.ide sohelp-cloud | 云端引擎主要提供一些基础服务,例如消息提醒等服务。 | | 导入导出引擎 sohelp-io | sohelp-io| net.sohelp.ide sohelp-io-import | | | 业务管理平台 sohelp-admin | sohelp-admin| net.sohelp.ide sohelp-admin-antdv | 组织架构\\权限岗位\\用户管理登录 | | SohelpBoot套装 spring.boot.starter | sohelp-ide-spring-boot-starter| net.sohelp.ide sohelp-ide-spring-boot-starter pom | | | Demo实例 sohelp-demo | sohelp-demo| net.sohelp.ide sohelp-demo pom | |