diff --git a/pom.xml b/pom.xml
index e631998bf..0b6c308bd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -17,6 +17,7 @@
yudao-module-infra
yudao-module-tblist
yudao-module-applyregistration
+ ultrasonicCom
diff --git a/ultrasonicCom/pom.xml b/ultrasonicCom/pom.xml
new file mode 100644
index 000000000..2dca3e831
--- /dev/null
+++ b/ultrasonicCom/pom.xml
@@ -0,0 +1,25 @@
+
+
+ 4.0.0
+
+ cn.iocoder.boot
+ yudao
+ ${revision}
+
+ ultrasonicCom
+ pom
+
+ ${project.artifactId}
+
+
+ demo 模块,主要实现 XXX、YYY、ZZZ 等功能。
+
+
+ ultrasonic-api
+ ultrasonic-biz
+
+
+
+
\ No newline at end of file
diff --git a/ultrasonicCom/ultrasonic-api/pom.xml b/ultrasonicCom/ultrasonic-api/pom.xml
new file mode 100644
index 000000000..bac88d46b
--- /dev/null
+++ b/ultrasonicCom/ultrasonic-api/pom.xml
@@ -0,0 +1,33 @@
+
+
+
+ cn.iocoder.boot
+ ultrasonicCom
+ ${revision}
+
+ 4.0.0
+ ultrasonicCom-api
+ jar
+
+ ${project.artifactId}
+
+ system 模块 API,暴露给其它模块调用
+
+
+
+
+ cn.iocoder.boot
+ yudao-common
+
+
+
+
+ org.springframework.boot
+ spring-boot-starter-validation
+ true
+
+
+
+
diff --git a/ultrasonicCom/ultrasonic-biz/pom.xml b/ultrasonicCom/ultrasonic-biz/pom.xml
new file mode 100644
index 000000000..b2f1691ef
--- /dev/null
+++ b/ultrasonicCom/ultrasonic-biz/pom.xml
@@ -0,0 +1,125 @@
+
+
+
+ cn.iocoder.boot
+ ultrasonicCom
+ ${revision}
+
+ 4.0.0
+ ultrasonicCom-biz
+ jar
+
+ ${project.artifactId}
+
+ system 模块下,我们放通用业务,支撑上层的核心业务。
+ 例如说:用户、部门、权限、数据字典等等
+
+
+
+
+ cn.iocoder.boot
+ ultrasonicCom-api
+ ${revision}
+
+
+ cn.iocoder.boot
+ yudao-module-infra-api
+ ${revision}
+
+
+
+
+ cn.iocoder.boot
+ yudao-spring-boot-starter-biz-data-permission
+
+
+ cn.iocoder.boot
+ yudao-spring-boot-starter-biz-tenant
+
+
+ cn.iocoder.boot
+ yudao-spring-boot-starter-biz-ip
+
+
+
+
+ cn.iocoder.boot
+ yudao-spring-boot-starter-security
+
+
+
+ org.springframework.boot
+ spring-boot-starter-validation
+
+
+
+
+ cn.iocoder.boot
+ yudao-spring-boot-starter-mybatis
+
+
+
+ cn.iocoder.boot
+ yudao-spring-boot-starter-redis
+
+
+
+
+ cn.iocoder.boot
+ yudao-spring-boot-starter-job
+
+
+
+
+ cn.iocoder.boot
+ yudao-spring-boot-starter-mq
+
+
+
+
+ cn.iocoder.boot
+ yudao-spring-boot-starter-excel
+
+
+
+ org.springframework.boot
+ spring-boot-starter-mail
+
+
+
+
+ com.xingyuv
+ spring-boot-starter-justauth
+
+
+
+ com.github.binarywang
+ wx-java-mp-spring-boot-starter
+
+
+ com.github.binarywang
+ wx-java-miniapp-spring-boot-starter
+
+
+
+ com.aliyun
+ aliyun-java-sdk-core
+
+
+ com.aliyun
+ aliyun-java-sdk-dysmsapi
+
+
+ com.tencentcloudapi
+ tencentcloud-sdk-java-sms
+
+
+
+ com.xingyuv
+ spring-boot-starter-captcha-plus
+
+
+
+
diff --git a/yudao-module-applyregistration/yudao-module-applyregistration-biz/src/main/java/cn/iocoder/yudao/module/applyregistration/controller/admin/applyform/ApplyformController.java b/yudao-module-applyregistration/yudao-module-applyregistration-biz/src/main/java/cn/iocoder/yudao/module/applyregistration/controller/admin/applyform/ApplyformController.java
index 087608772..6f8ef40f3 100644
--- a/yudao-module-applyregistration/yudao-module-applyregistration-biz/src/main/java/cn/iocoder/yudao/module/applyregistration/controller/admin/applyform/ApplyformController.java
+++ b/yudao-module-applyregistration/yudao-module-applyregistration-biz/src/main/java/cn/iocoder/yudao/module/applyregistration/controller/admin/applyform/ApplyformController.java
@@ -203,7 +203,7 @@ public class ApplyformController {
if (!doList.isEmpty())
{
boolean bol= applyformService.updateBatchById(doList);
- return success(true);
+ return success(bol);
}
else
{
diff --git a/yudao-server/pom.xml b/yudao-server/pom.xml
index 72e628a78..b276e8f11 100644
--- a/yudao-server/pom.xml
+++ b/yudao-server/pom.xml
@@ -21,6 +21,11 @@
https://github.com/YunaiV/ruoyi-vue-pro
+
+ cn.iocoder.boot
+ ultrasonicCom-biz
+ ${revision}
+
cn.iocoder.boot
yudao-module-applyregistration-biz