From c633781c14b99b09e7a83d4a0e5404345a7cab30 Mon Sep 17 00:00:00 2001
From: lxd <1004405501@qq.com>
Date: Mon, 15 Jul 2024 16:35:48 +0800
Subject: [PATCH] =?UTF-8?q?=E5=88=9B=E5=BB=BAultrasonicCom=20=E6=A8=A1?=
=?UTF-8?q?=E5=9D=97=20=E8=B6=85=E5=A3=B0=E7=BB=84=E4=BB=B6?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pom.xml | 1 +
ultrasonicCom/pom.xml | 25 ++++
ultrasonicCom/ultrasonic-api/pom.xml | 33 +++++
ultrasonicCom/ultrasonic-biz/pom.xml | 125 ++++++++++++++++++
.../admin/applyform/ApplyformController.java | 2 +-
yudao-server/pom.xml | 5 +
6 files changed, 190 insertions(+), 1 deletion(-)
create mode 100644 ultrasonicCom/pom.xml
create mode 100644 ultrasonicCom/ultrasonic-api/pom.xml
create mode 100644 ultrasonicCom/ultrasonic-biz/pom.xml
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