Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
项目统一框架
amos-boot-biz
Commits
61b696e6
Commit
61b696e6
authored
Aug 06, 2024
by
suhuiguang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.统一版本号
parent
0faac618
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
15 additions
and
10 deletions
+15
-10
pom.xml
amos-boot-data/amos-boot-data-accessapi/pom.xml
+0
-1
pom.xml
...os-boot-module-common/amos-boot-module-common-api/pom.xml
+0
-1
YJDPStatisticsServiceImpl.java
...statistcs/biz/service/impl/YJDPStatisticsServiceImpl.java
+5
-5
pom.xml
...t-module-tzspatrol/amos-boot-module-tzspatrol-api/pom.xml
+0
-2
pom.xml
...t-module-tzspatrol/amos-boot-module-tzspatrol-biz/pom.xml
+0
-1
pom.xml
pom.xml
+10
-0
No files found.
amos-boot-data/amos-boot-data-accessapi/pom.xml
View file @
61b696e6
...
@@ -171,7 +171,6 @@
...
@@ -171,7 +171,6 @@
<dependency>
<dependency>
<groupId>
cn.hutool
</groupId>
<groupId>
cn.hutool
</groupId>
<artifactId>
hutool-all
</artifactId>
<artifactId>
hutool-all
</artifactId>
<version>
5.7.22
</version>
</dependency>
</dependency>
<!-- <dependency>-->
<!-- <dependency>-->
<!-- <groupId>com.yeejoin</groupId>-->
<!-- <groupId>com.yeejoin</groupId>-->
...
...
amos-boot-system-tzs/amos-boot-module-common/amos-boot-module-common-api/pom.xml
View file @
61b696e6
...
@@ -25,7 +25,6 @@
...
@@ -25,7 +25,6 @@
<dependency>
<dependency>
<groupId>
cn.hutool
</groupId>
<groupId>
cn.hutool
</groupId>
<artifactId>
hutool-all
</artifactId>
<artifactId>
hutool-all
</artifactId>
<version>
5.8.16
</version>
</dependency>
</dependency>
</dependencies>
</dependencies>
</project>
</project>
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/java/com/yeejoin/amos/boot/module/statistcs/biz/service/impl/YJDPStatisticsServiceImpl.java
View file @
61b696e6
...
@@ -283,11 +283,11 @@ public class YJDPStatisticsServiceImpl {
...
@@ -283,11 +283,11 @@ public class YJDPStatisticsServiceImpl {
List
<
AlertRescueStatistics
>
alertRescueStatistics
=
alertRescueStatisticsMapper
.
selectList
(
lambda
);
List
<
AlertRescueStatistics
>
alertRescueStatistics
=
alertRescueStatisticsMapper
.
selectList
(
lambda
);
List
<
Long
>
ydata
=
new
ArrayList
<>();
List
<
Long
>
ydata
=
new
ArrayList
<>();
ydata
.
add
(
alertRescueStatistics
.
stream
().
collect
(
Collectors
.
summingLong
(
AlertRescueStatistics:
:
getLessNum
)
));
ydata
.
add
(
alertRescueStatistics
.
stream
().
mapToLong
(
AlertRescueStatistics:
:
getLessNum
).
sum
(
));
ydata
.
add
(
alertRescueStatistics
.
stream
().
collect
(
Collectors
.
summingLong
(
AlertRescueStatistics:
:
getGreaterNum
)
));
ydata
.
add
(
alertRescueStatistics
.
stream
().
mapToLong
(
AlertRescueStatistics:
:
getGreaterNum
).
sum
(
));
ydata
.
add
(
alertRescueStatistics
.
stream
().
collect
(
Collectors
.
summingLong
(
AlertRescueStatistics:
:
getLevelOne
)
));
ydata
.
add
(
alertRescueStatistics
.
stream
().
mapToLong
(
AlertRescueStatistics:
:
getLevelOne
).
sum
(
));
ydata
.
add
(
alertRescueStatistics
.
stream
().
collect
(
Collectors
.
summingLong
(
AlertRescueStatistics:
:
getLevelTwo
)
));
ydata
.
add
(
alertRescueStatistics
.
stream
().
mapToLong
(
AlertRescueStatistics:
:
getLevelTwo
).
sum
(
));
ydata
.
add
(
alertRescueStatistics
.
stream
().
collect
(
Collectors
.
summingLong
(
AlertRescueStatistics:
:
getLevelThree
)
));
ydata
.
add
(
alertRescueStatistics
.
stream
().
mapToLong
(
AlertRescueStatistics:
:
getLevelThree
).
sum
(
));
JSONObject
jsonObject
=
new
JSONObject
();
JSONObject
jsonObject
=
new
JSONObject
();
jsonObject
.
put
(
"xdata"
,
Arrays
.
asList
(
"30分钟内到达次数"
,
"超过30分钟到次数"
,
"一级救援次数"
,
"二级救援次数"
,
"三级救援次数"
));
jsonObject
.
put
(
"xdata"
,
Arrays
.
asList
(
"30分钟内到达次数"
,
"超过30分钟到次数"
,
"一级救援次数"
,
"二级救援次数"
,
"三级救援次数"
));
...
...
amos-boot-system-tzs/amos-boot-module-tzspatrol/amos-boot-module-tzspatrol-api/pom.xml
View file @
61b696e6
...
@@ -20,7 +20,6 @@
...
@@ -20,7 +20,6 @@
<dependency>
<dependency>
<groupId>
cn.hutool
</groupId>
<groupId>
cn.hutool
</groupId>
<artifactId>
hutool-all
</artifactId>
<artifactId>
hutool-all
</artifactId>
<version>
5.3.10
</version>
</dependency>
</dependency>
<dependency>
<dependency>
...
@@ -52,7 +51,6 @@
...
@@ -52,7 +51,6 @@
<dependency>
<dependency>
<groupId>
cn.hutool
</groupId>
<groupId>
cn.hutool
</groupId>
<artifactId>
hutool-core
</artifactId>
<artifactId>
hutool-core
</artifactId>
<version>
5.8.16
</version>
</dependency>
</dependency>
</dependencies>
</dependencies>
...
...
amos-boot-system-tzs/amos-boot-module-tzspatrol/amos-boot-module-tzspatrol-biz/pom.xml
View file @
61b696e6
...
@@ -119,7 +119,6 @@
...
@@ -119,7 +119,6 @@
<dependency>
<dependency>
<groupId>
cn.hutool
</groupId>
<groupId>
cn.hutool
</groupId>
<artifactId>
hutool-all
</artifactId>
<artifactId>
hutool-all
</artifactId>
<version>
5.5.1
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
org.liquibase
</groupId>
<groupId>
org.liquibase
</groupId>
...
...
pom.xml
View file @
61b696e6
...
@@ -268,6 +268,16 @@
...
@@ -268,6 +268,16 @@
<artifactId>
amos-component-security
</artifactId>
<artifactId>
amos-component-security
</artifactId>
<version>
${amos.version}
</version>
<version>
${amos.version}
</version>
</dependency>
</dependency>
<dependency>
<groupId>
cn.hutool
</groupId>
<artifactId>
hutool-all
</artifactId>
<version>
5.8.16
</version>
</dependency>
<dependency>
<groupId>
cn.hutool
</groupId>
<artifactId>
hutool-core
</artifactId>
<version>
5.8.16
</version>
</dependency>
</dependencies>
</dependencies>
</dependencyManagement>
</dependencyManagement>
<repositories>
<repositories>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment