Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-zx-biz
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
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
Jobs
Commits
Open sidebar
项目统一框架
一体化_户用光伏项目代码
amos-boot-zx-biz
Commits
8b4b8aac
Commit
8b4b8aac
authored
Oct 19, 2023
by
caotao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.获取风机数据增加排序操作。
2.整理测点模板导入时增加判断防止垃圾数据。
parent
e02ba31a
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
DemoController.java
...amos/boot/module/jxiop/biz/controller/DemoController.java
+2
-2
MonitorFanIndicatorImpl.java
...odule/jxiop/biz/service/impl/MonitorFanIndicatorImpl.java
+0
-0
No files found.
amos-boot-system-jxiop/amos-boot-module-jxiop-monitor-biz/src/main/java/com/yeejoin/amos/boot/module/jxiop/biz/controller/DemoController.java
View file @
8b4b8aac
...
...
@@ -270,8 +270,8 @@ public class DemoController extends BaseController {
//更新显示名称
equipmentsJxiopDocMysql
.
setDisplayName
(
pointImportDto
.
getDisplayName
());
esEquipments
.
setDisplayName
(
pointImportDto
.
getDisplayName
());
//更新单位
if
(!
ObjectUtils
.
isEmpty
(
pointImportDto
.
getUnit
())){
//更新单位
如果单位为空或者单位超过周期性数据存储长度则丢弃单位更新操作
if
(!
ObjectUtils
.
isEmpty
(
pointImportDto
.
getUnit
())
&&(
pointImportDto
.
getUnit
().
toCharArray
().
length
<
24
)
){
equipmentsJxiopDocMysql
.
setUnit
(
pointImportDto
.
getUnit
());
esEquipments
.
setUnit
(
pointImportDto
.
getUnit
());
}
...
...
amos-boot-system-jxiop/amos-boot-module-jxiop-monitor-biz/src/main/java/com/yeejoin/amos/boot/module/jxiop/biz/service/impl/MonitorFanIndicatorImpl.java
View file @
8b4b8aac
This diff is collapsed.
Click to expand it.
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