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
af0b5358
Commit
af0b5358
authored
Aug 06, 2024
by
李秀明
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Number转换报错
parent
7074f2be
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
SystemStatisticController.java
...oin/equipmanage/controller/SystemStatisticController.java
+8
-3
No files found.
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/controller/SystemStatisticController.java
View file @
af0b5358
...
@@ -19,6 +19,7 @@ import org.typroject.tyboot.core.restful.doc.TycloudOperation;
...
@@ -19,6 +19,7 @@ import org.typroject.tyboot.core.restful.doc.TycloudOperation;
import
org.typroject.tyboot.core.restful.utils.ResponseModel
;
import
org.typroject.tyboot.core.restful.utils.ResponseModel
;
import
java.math.BigDecimal
;
import
java.math.BigDecimal
;
import
java.math.RoundingMode
;
import
java.util.List
;
import
java.util.List
;
import
java.util.Map
;
import
java.util.Map
;
...
@@ -47,9 +48,13 @@ public class SystemStatisticController extends AbstractBaseController {
...
@@ -47,9 +48,13 @@ public class SystemStatisticController extends AbstractBaseController {
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"获取系统状态统计信息"
,
notes
=
"获取系统状态统计信息"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"获取系统状态统计信息"
,
notes
=
"获取系统状态统计信息"
)
public
ResponseModel
getSystemInfo
(
@RequestParam
(
required
=
false
)
String
bizOrgCode
)
{
public
ResponseModel
getSystemInfo
(
@RequestParam
(
required
=
false
)
String
bizOrgCode
)
{
Map
<
String
,
Object
>
map
=
fireFightingSystemMapper
.
getCenterEquipState
(
bizOrgCode
);
Map
<
String
,
Object
>
map
=
fireFightingSystemMapper
.
getCenterEquipState
(
bizOrgCode
);
BigDecimal
normal
=
new
BigDecimal
(
String
.
valueOf
(
map
.
get
(
"normalNum"
)));
BigDecimal
normal
=
new
BigDecimal
(
String
.
valueOf
(
map
.
getOrDefault
(
"normalNum"
,
"0"
)));
BigDecimal
total
=
new
BigDecimal
(
String
.
valueOf
(
map
.
get
(
"total"
)));
BigDecimal
total
=
new
BigDecimal
(
String
.
valueOf
(
map
.
getOrDefault
(
"total"
,
"0"
)));
map
.
put
(
"abs"
,
normal
.
divide
(
total
,
2
,
BigDecimal
.
ROUND_HALF_UP
).
movePointRight
(
2
));
if
(
total
.
compareTo
(
BigDecimal
.
ZERO
)
==
0
)
{
map
.
put
(
"abs"
,
BigDecimal
.
ZERO
);
}
else
{
map
.
put
(
"abs"
,
normal
.
divide
(
total
,
2
,
RoundingMode
.
HALF_UP
).
movePointRight
(
2
));
}
return
CommonResponseUtil
.
success
(
map
);
return
CommonResponseUtil
.
success
(
map
);
}
}
...
...
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