diff --git a/pom.xml b/pom.xml index b3ea38a1a..7adca82e1 100644 --- a/pom.xml +++ b/pom.xml @@ -18,6 +18,7 @@ yudao-module-system yudao-module-infra yudao-module-pay + yudao-module-wechat ${project.artifactId} diff --git a/yudao-module-wechat/pom.xml b/yudao-module-wechat/pom.xml new file mode 100644 index 000000000..1107f7f5d --- /dev/null +++ b/yudao-module-wechat/pom.xml @@ -0,0 +1,26 @@ + + + + yudao + cn.iocoder.boot + ${revision} + + 4.0.0 + + yudao-module-wechat + pom + + + wechat 模块,主要实现微信平台的相关业务。 + 例如:微信公众号、企业微信 SCRM 等 + + + yudao-module-mp-api + yudao-module-mp-biz + yudao-module-work-biz + yudao-module-work-api + + + diff --git a/yudao-module-wechat/yudao-module-mp-api/pom.xml b/yudao-module-wechat/yudao-module-mp-api/pom.xml new file mode 100644 index 000000000..509b5f6b6 --- /dev/null +++ b/yudao-module-wechat/yudao-module-mp-api/pom.xml @@ -0,0 +1,26 @@ + + + + yudao-module-wechat + cn.iocoder.boot + ${revision} + + 4.0.0 + yudao-module-mp-api + jar + + ${project.artifactId} + + mp 模块 API,暴露给其它模块调用 + + + + + cn.iocoder.boot + yudao-common + + + + diff --git a/yudao-module-wechat/yudao-module-mp-biz/pom.xml b/yudao-module-wechat/yudao-module-mp-biz/pom.xml new file mode 100644 index 000000000..67a6bed2a --- /dev/null +++ b/yudao-module-wechat/yudao-module-mp-biz/pom.xml @@ -0,0 +1,84 @@ + + + + yudao-module-wechat + cn.iocoder.boot + ${revision} + + 4.0.0 + yudao-module-mp-biz + jar + + ${project.artifactId} + + mp 模块,我们放微信微信公众号。 + 例如说:提供微信公众号的账号、菜单、粉丝、标签、消息、自动回复、素材、模板通知、运营数据等功能 + + + + + cn.iocoder.boot + yudao-module-mp-api + ${revision} + + + cn.iocoder.boot + yudao-module-system-api + ${revision} + + + cn.iocoder.boot + yudao-module-infra-api + ${revision} + + + + + cn.iocoder.boot + yudao-spring-boot-starter-biz-operatelog + + + cn.iocoder.boot + yudao-spring-boot-starter-biz-weixin + + + cn.iocoder.boot + yudao-spring-boot-starter-biz-tenant + + + + + cn.iocoder.boot + yudao-spring-boot-starter-security + + + + + cn.iocoder.boot + yudao-spring-boot-starter-mybatis + + + + cn.iocoder.boot + yudao-spring-boot-starter-redis + + + + + cn.iocoder.boot + yudao-spring-boot-starter-mq + + + + + cn.iocoder.boot + yudao-spring-boot-starter-test + test + + + + + + diff --git a/yudao-module-wechat/yudao-module-mp-biz/src/main/java/cn/iocoder/yudao/module/mp/package-info.java b/yudao-module-wechat/yudao-module-mp-biz/src/main/java/cn/iocoder/yudao/module/mp/package-info.java new file mode 100644 index 000000000..598718088 --- /dev/null +++ b/yudao-module-wechat/yudao-module-mp-biz/src/main/java/cn/iocoder/yudao/module/mp/package-info.java @@ -0,0 +1,8 @@ +/** + * mp 模块,我们放微信微信公众号。 + * 例如说:提供微信公众号的账号、菜单、粉丝、标签、消息、自动回复、素材、模板通知、运营数据等功能 + * + * 1. Controller URL:以 /mp/ 开头,避免和其它 Module 冲突 + * 2. DataObject 表名:以 mp_ 开头,方便在数据库中区分 + */ +package cn.iocoder.yudao.module.mp; diff --git a/yudao-module-wechat/yudao-module-work-api/pom.xml b/yudao-module-wechat/yudao-module-work-api/pom.xml new file mode 100644 index 000000000..3d3d15b54 --- /dev/null +++ b/yudao-module-wechat/yudao-module-work-api/pom.xml @@ -0,0 +1,26 @@ + + + + yudao-module-wechat + cn.iocoder.boot + ${revision} + + 4.0.0 + yudao-module-work-api + jar + + ${project.artifactId} + + work 模块 API,暴露给其它模块调用 + + + + + cn.iocoder.boot + yudao-common + + + + diff --git a/yudao-module-wechat/yudao-module-work-biz/pom.xml b/yudao-module-wechat/yudao-module-work-biz/pom.xml new file mode 100644 index 000000000..185d583e9 --- /dev/null +++ b/yudao-module-wechat/yudao-module-work-biz/pom.xml @@ -0,0 +1,18 @@ + + + + yudao-module-wechat + cn.iocoder.boot + ${revision} + + 4.0.0 + + yudao-module-work-biz + + work 模块,我们放企业微信。 + 例如说:提供企业微信的账号、菜单、聊天侧边栏、客户、客户群、聊天记录等功能 + + +