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
9ec8c8c3
Commit
9ec8c8c3
authored
Nov 04, 2022
by
tianyiming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
稳压泵启停查询iot字段更改
parent
e23dfeeb
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
34 additions
and
17 deletions
+34
-17
BigScreenController.java
...m/yeejoin/equipmanage/controller/BigScreenController.java
+9
-3
ConfigureController.java
...m/yeejoin/equipmanage/controller/ConfigureController.java
+13
-6
SupervisionConfigureController.java
...quipmanage/controller/SupervisionConfigureController.java
+12
-8
No files found.
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/controller/BigScreenController.java
View file @
9ec8c8c3
...
@@ -17,6 +17,7 @@ import io.swagger.annotations.Api;
...
@@ -17,6 +17,7 @@ import io.swagger.annotations.Api;
import
io.swagger.annotations.ApiOperation
;
import
io.swagger.annotations.ApiOperation
;
import
org.apache.commons.lang3.StringUtils
;
import
org.apache.commons.lang3.StringUtils
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.http.MediaType
;
import
org.springframework.http.MediaType
;
import
org.springframework.util.ObjectUtils
;
import
org.springframework.util.ObjectUtils
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.GetMapping
;
...
@@ -48,6 +49,11 @@ public class BigScreenController extends AbstractBaseController {
...
@@ -48,6 +49,11 @@ public class BigScreenController extends AbstractBaseController {
@Autowired
@Autowired
private
IotFeign
iotFeign
;
private
IotFeign
iotFeign
;
@Value
(
"${equipment.pressurepump.start}"
)
private
String
pressurePumpStart
;
@Value
(
"${equipment.pressurepump.stop}"
)
private
String
pressurePumpStop
;
@GetMapping
(
value
=
"/list"
)
@GetMapping
(
value
=
"/list"
)
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"系统、消防水池、工业水池、水源总容积、消防车辆(接口弃用)"
,
notes
=
"系统、消防水池、工业水池、水源总容积、消防车辆"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"系统、消防水池、工业水池、水源总容积、消防车辆(接口弃用)"
,
notes
=
"系统、消防水池、工业水池、水源总容积、消防车辆"
)
...
@@ -110,8 +116,8 @@ public class BigScreenController extends AbstractBaseController {
...
@@ -110,8 +116,8 @@ public class BigScreenController extends AbstractBaseController {
ResponseModel
entity1
=
null
;
ResponseModel
entity1
=
null
;
ResponseModel
entity2
=
null
;
ResponseModel
entity2
=
null
;
try
{
try
{
entity1
=
iotFeign
.
selectList
(
getAppKey
(),
getProduct
(),
getToken
(),
startDateStr
,
nowStrLong
,
prefix
,
suffix
,
"FHS_PressurePump_Start"
);
entity1
=
iotFeign
.
selectList
(
getAppKey
(),
getProduct
(),
getToken
(),
startDateStr
,
nowStrLong
,
prefix
,
suffix
,
pressurePumpStart
);
entity2
=
iotFeign
.
selectList
(
getAppKey
(),
getProduct
(),
getToken
(),
startDateStr
,
nowStrLong
,
prefix
,
suffix
,
"FHS_PressurePump_Stop"
);
entity2
=
iotFeign
.
selectList
(
getAppKey
(),
getProduct
(),
getToken
(),
startDateStr
,
nowStrLong
,
prefix
,
suffix
,
pressurePumpStop
);
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
e
.
printStackTrace
();
}
}
...
@@ -121,7 +127,7 @@ public class BigScreenController extends AbstractBaseController {
...
@@ -121,7 +127,7 @@ public class BigScreenController extends AbstractBaseController {
String
json2
=
JSON
.
toJSONString
(
entity2
.
getResult
());
String
json2
=
JSON
.
toJSONString
(
entity2
.
getResult
());
List
<
Map
<
String
,
String
>>
listObject2
=
(
List
<
Map
<
String
,
String
>>)
JSONArray
.
parse
(
json2
);
List
<
Map
<
String
,
String
>>
listObject2
=
(
List
<
Map
<
String
,
String
>>)
JSONArray
.
parse
(
json2
);
listObject1
.
addAll
(
listObject2
);
listObject1
.
addAll
(
listObject2
);
List
<
Map
<
String
,
String
>>
collect
=
listObject1
.
stream
().
filter
(
t
->
(
t
.
containsKey
(
"FHS_PressurePump_Start"
)
&&
t
.
get
(
"FHS_PressurePump_Start"
).
equals
(
"true"
))
||
(
t
.
containsKey
(
"FHS_PressurePump_Stop"
)
&&
t
.
get
(
"FHS_PressurePump_Stop"
).
equals
(
"true"
))).
collect
(
Collectors
.
toList
());
List
<
Map
<
String
,
String
>>
collect
=
listObject1
.
stream
().
filter
(
t
->
(
t
.
containsKey
(
pressurePumpStart
)
&&
t
.
get
(
pressurePumpStart
).
equals
(
"true"
))
||
(
t
.
containsKey
(
pressurePumpStop
)
&&
t
.
get
(
pressurePumpStop
).
equals
(
"true"
))).
collect
(
Collectors
.
toList
());
int
num
=
collect
.
size
();
int
num
=
collect
.
size
();
item
.
put
(
"startAndStopNum"
,
num
);
item
.
put
(
"startAndStopNum"
,
num
);
}
}
...
...
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/controller/ConfigureController.java
View file @
9ec8c8c3
...
@@ -15,6 +15,7 @@ import io.swagger.annotations.ApiOperation;
...
@@ -15,6 +15,7 @@ import io.swagger.annotations.ApiOperation;
import
io.swagger.annotations.ApiParam
;
import
io.swagger.annotations.ApiParam
;
import
org.apache.commons.lang3.StringUtils
;
import
org.apache.commons.lang3.StringUtils
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.http.MediaType
;
import
org.springframework.http.MediaType
;
import
org.springframework.util.CollectionUtils
;
import
org.springframework.util.CollectionUtils
;
import
org.springframework.util.ObjectUtils
;
import
org.springframework.util.ObjectUtils
;
...
@@ -47,6 +48,12 @@ public class ConfigureController extends AbstractBaseController {
...
@@ -47,6 +48,12 @@ public class ConfigureController extends AbstractBaseController {
@Autowired
@Autowired
private
IotFeign
iotFeign
;
private
IotFeign
iotFeign
;
@Value
(
"${equipment.pressurepump.start}"
)
private
String
pressurePumpStart
;
@Value
(
"${equipment.pressurepump.stop}"
)
private
String
pressurePumpStop
;
@PersonIdentify
@PersonIdentify
@RequestMapping
(
value
=
"/alarmLogPage"
,
method
=
RequestMethod
.
GET
)
@RequestMapping
(
value
=
"/alarmLogPage"
,
method
=
RequestMethod
.
GET
)
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
...
@@ -283,8 +290,8 @@ public class ConfigureController extends AbstractBaseController {
...
@@ -283,8 +290,8 @@ public class ConfigureController extends AbstractBaseController {
ResponseModel
entity1
=
null
;
ResponseModel
entity1
=
null
;
ResponseModel
entity2
=
null
;
ResponseModel
entity2
=
null
;
try
{
try
{
entity1
=
iotFeign
.
selectList
(
getAppKey
(),
getProduct
(),
getToken
(),
startDateStr
,
nowStrLong
,
prefix
,
suffix
,
"FHS_PressurePump_Start"
);
entity1
=
iotFeign
.
selectList
(
getAppKey
(),
getProduct
(),
getToken
(),
startDateStr
,
nowStrLong
,
prefix
,
suffix
,
pressurePumpStart
);
entity2
=
iotFeign
.
selectList
(
getAppKey
(),
getProduct
(),
getToken
(),
startDateStr
,
nowStrLong
,
prefix
,
suffix
,
"FHS_PressurePump_Stop"
);
entity2
=
iotFeign
.
selectList
(
getAppKey
(),
getProduct
(),
getToken
(),
startDateStr
,
nowStrLong
,
prefix
,
suffix
,
pressurePumpStop
);
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
e
.
printStackTrace
();
}
}
...
@@ -294,7 +301,7 @@ public class ConfigureController extends AbstractBaseController {
...
@@ -294,7 +301,7 @@ public class ConfigureController extends AbstractBaseController {
String
json2
=
JSON
.
toJSONString
(
entity2
.
getResult
());
String
json2
=
JSON
.
toJSONString
(
entity2
.
getResult
());
List
<
Map
<
String
,
String
>>
listObject2
=
(
List
<
Map
<
String
,
String
>>)
JSONArray
.
parse
(
json2
);
List
<
Map
<
String
,
String
>>
listObject2
=
(
List
<
Map
<
String
,
String
>>)
JSONArray
.
parse
(
json2
);
listObject1
.
addAll
(
listObject2
);
listObject1
.
addAll
(
listObject2
);
List
<
Map
<
String
,
String
>>
collect
=
listObject1
.
stream
().
filter
(
t
->
(
t
.
containsKey
(
"FHS_PressurePump_Start"
)
&&
t
.
get
(
"FHS_PressurePump_Start"
).
equals
(
"true"
))
||
(
t
.
containsKey
(
"FHS_PressurePump_Stop"
)
&&
t
.
get
(
"FHS_PressurePump_Stop"
).
equals
(
"true"
))).
collect
(
Collectors
.
toList
());
List
<
Map
<
String
,
String
>>
collect
=
listObject1
.
stream
().
filter
(
t
->
(
t
.
containsKey
(
pressurePumpStart
)
&&
t
.
get
(
pressurePumpStart
).
equals
(
"true"
))
||
(
t
.
containsKey
(
pressurePumpStop
)
&&
t
.
get
(
pressurePumpStop
).
equals
(
"true"
))).
collect
(
Collectors
.
toList
());
int
num
=
collect
.
size
();
int
num
=
collect
.
size
();
item
.
put
(
"startAndStopNum"
,
num
);
item
.
put
(
"startAndStopNum"
,
num
);
}
}
...
@@ -343,8 +350,8 @@ public class ConfigureController extends AbstractBaseController {
...
@@ -343,8 +350,8 @@ public class ConfigureController extends AbstractBaseController {
ResponseModel
entity1
=
null
;
ResponseModel
entity1
=
null
;
ResponseModel
entity2
=
null
;
ResponseModel
entity2
=
null
;
try
{
try
{
entity1
=
iotFeign
.
selectList
(
getAppKey
(),
getProduct
(),
getToken
(),
startDateStr
,
nowStrLong
,
prefix
,
suffix
,
"FHS_PressurePump_Start"
);
entity1
=
iotFeign
.
selectList
(
getAppKey
(),
getProduct
(),
getToken
(),
startDateStr
,
nowStrLong
,
prefix
,
suffix
,
pressurePumpStart
);
entity2
=
iotFeign
.
selectList
(
getAppKey
(),
getProduct
(),
getToken
(),
startDateStr
,
nowStrLong
,
prefix
,
suffix
,
"FHS_PressurePump_Stop"
);
entity2
=
iotFeign
.
selectList
(
getAppKey
(),
getProduct
(),
getToken
(),
startDateStr
,
nowStrLong
,
prefix
,
suffix
,
pressurePumpStop
);
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
e
.
printStackTrace
();
}
}
...
@@ -354,7 +361,7 @@ public class ConfigureController extends AbstractBaseController {
...
@@ -354,7 +361,7 @@ public class ConfigureController extends AbstractBaseController {
String
json2
=
JSON
.
toJSONString
(
entity2
.
getResult
());
String
json2
=
JSON
.
toJSONString
(
entity2
.
getResult
());
List
<
Map
<
String
,
String
>>
listObject2
=
(
List
<
Map
<
String
,
String
>>)
JSONArray
.
parse
(
json2
);
List
<
Map
<
String
,
String
>>
listObject2
=
(
List
<
Map
<
String
,
String
>>)
JSONArray
.
parse
(
json2
);
listObject1
.
addAll
(
listObject2
);
listObject1
.
addAll
(
listObject2
);
List
<
Map
<
String
,
String
>>
collect
=
listObject1
.
stream
().
filter
(
t
->
(
t
.
containsKey
(
"FHS_PressurePump_Start"
)
&&
t
.
get
(
"FHS_PressurePump_Start"
).
equals
(
"true"
))
||
(
t
.
containsKey
(
"FHS_PressurePump_Stop"
)
&&
t
.
get
(
"FHS_PressurePump_Stop"
).
equals
(
"true"
))).
collect
(
Collectors
.
toList
());
List
<
Map
<
String
,
String
>>
collect
=
listObject1
.
stream
().
filter
(
t
->
(
t
.
containsKey
(
pressurePumpStart
)
&&
t
.
get
(
pressurePumpStart
).
equals
(
"true"
))
||
(
t
.
containsKey
(
pressurePumpStop
)
&&
t
.
get
(
pressurePumpStop
).
equals
(
"true"
))).
collect
(
Collectors
.
toList
());
int
num
=
collect
.
size
();
int
num
=
collect
.
size
();
item
.
put
(
"startAndStopNum"
,
num
);
item
.
put
(
"startAndStopNum"
,
num
);
}
}
...
...
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/controller/SupervisionConfigureController.java
View file @
9ec8c8c3
...
@@ -16,6 +16,7 @@ import io.swagger.annotations.Api;
...
@@ -16,6 +16,7 @@ import io.swagger.annotations.Api;
import
io.swagger.annotations.ApiOperation
;
import
io.swagger.annotations.ApiOperation
;
import
org.apache.commons.lang3.StringUtils
;
import
org.apache.commons.lang3.StringUtils
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.http.MediaType
;
import
org.springframework.http.MediaType
;
import
org.springframework.util.ObjectUtils
;
import
org.springframework.util.ObjectUtils
;
import
org.springframework.web.bind.annotation.*
;
import
org.springframework.web.bind.annotation.*
;
...
@@ -50,6 +51,9 @@ public class SupervisionConfigureController extends AbstractBaseController {
...
@@ -50,6 +51,9 @@ public class SupervisionConfigureController extends AbstractBaseController {
@Autowired
@Autowired
private
ISupervisionVideoService
supervisionVideoService
;
private
ISupervisionVideoService
supervisionVideoService
;
@Value
(
"${equipment.pressurepump.start}"
)
private
String
pressurePumpStart
;
@PersonIdentify
@PersonIdentify
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@ApiOperation
(
value
=
"监盘概览水源信息"
)
@ApiOperation
(
value
=
"监盘概览水源信息"
)
...
@@ -286,38 +290,38 @@ public class SupervisionConfigureController extends AbstractBaseController {
...
@@ -286,38 +290,38 @@ public class SupervisionConfigureController extends AbstractBaseController {
ResponseModel
twoHourEntity
=
null
;
ResponseModel
twoHourEntity
=
null
;
ResponseModel
fourHourEntity
=
null
;
ResponseModel
fourHourEntity
=
null
;
try
{
try
{
mounthEntity
=
iotFeign
.
selectList
(
getAppKey
(),
getProduct
(),
getToken
(),
startDateStr
,
nowStrLong
,
prefix
,
suffix
,
"FHS_PressurePump_Start"
);
mounthEntity
=
iotFeign
.
selectList
(
getAppKey
(),
getProduct
(),
getToken
(),
startDateStr
,
nowStrLong
,
prefix
,
suffix
,
pressurePumpStart
);
halfHourEntity
=
iotFeign
.
selectList
(
getAppKey
(),
getProduct
(),
getToken
(),
half
,
nowStrLong
,
prefix
,
suffix
,
"FHS_PressurePump_Start"
);
halfHourEntity
=
iotFeign
.
selectList
(
getAppKey
(),
getProduct
(),
getToken
(),
half
,
nowStrLong
,
prefix
,
suffix
,
pressurePumpStart
);
twoHourEntity
=
iotFeign
.
selectList
(
getAppKey
(),
getProduct
(),
getToken
(),
two
,
nowStrLong
,
prefix
,
suffix
,
"FHS_PressurePump_Start"
);
twoHourEntity
=
iotFeign
.
selectList
(
getAppKey
(),
getProduct
(),
getToken
(),
two
,
nowStrLong
,
prefix
,
suffix
,
pressurePumpStart
);
fourHourEntity
=
iotFeign
.
selectList
(
getAppKey
(),
getProduct
(),
getToken
(),
four
,
nowStrLong
,
prefix
,
suffix
,
"FHS_PressurePump_Start"
);
fourHourEntity
=
iotFeign
.
selectList
(
getAppKey
(),
getProduct
(),
getToken
(),
four
,
nowStrLong
,
prefix
,
suffix
,
pressurePumpStart
);
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
e
.
printStackTrace
();
}
}
if
(
200
==
mounthEntity
.
getStatus
())
{
if
(
200
==
mounthEntity
.
getStatus
())
{
String
json1
=
JSON
.
toJSONString
(
mounthEntity
.
getResult
());
String
json1
=
JSON
.
toJSONString
(
mounthEntity
.
getResult
());
List
<
Map
<
String
,
String
>>
listObject1
=
(
List
<
Map
<
String
,
String
>>)
JSONArray
.
parse
(
json1
);
List
<
Map
<
String
,
String
>>
listObject1
=
(
List
<
Map
<
String
,
String
>>)
JSONArray
.
parse
(
json1
);
List
<
Map
<
String
,
String
>>
collect
=
listObject1
.
stream
().
filter
(
t
->
(
t
.
containsKey
(
"FHS_PressurePump_Start"
)
&&
t
.
get
(
"FHS_PressurePump_Start"
).
equals
(
"true"
))).
collect
(
Collectors
.
toList
());
List
<
Map
<
String
,
String
>>
collect
=
listObject1
.
stream
().
filter
(
t
->
(
t
.
containsKey
(
pressurePumpStart
)
&&
t
.
get
(
pressurePumpStart
).
equals
(
"true"
))).
collect
(
Collectors
.
toList
());
int
num
=
collect
.
size
();
int
num
=
collect
.
size
();
item
.
put
(
"monthStartNum"
,
num
);
item
.
put
(
"monthStartNum"
,
num
);
}
}
if
(
200
==
halfHourEntity
.
getStatus
())
{
if
(
200
==
halfHourEntity
.
getStatus
())
{
String
json1
=
JSON
.
toJSONString
(
halfHourEntity
.
getResult
());
String
json1
=
JSON
.
toJSONString
(
halfHourEntity
.
getResult
());
List
<
Map
<
String
,
String
>>
listObject1
=
(
List
<
Map
<
String
,
String
>>)
JSONArray
.
parse
(
json1
);
List
<
Map
<
String
,
String
>>
listObject1
=
(
List
<
Map
<
String
,
String
>>)
JSONArray
.
parse
(
json1
);
List
<
Map
<
String
,
String
>>
collect
=
listObject1
.
stream
().
filter
(
t
->
(
t
.
containsKey
(
"FHS_PressurePump_Start"
)
&&
t
.
get
(
"FHS_PressurePump_Start"
).
equals
(
"true"
))).
collect
(
Collectors
.
toList
());
List
<
Map
<
String
,
String
>>
collect
=
listObject1
.
stream
().
filter
(
t
->
(
t
.
containsKey
(
pressurePumpStart
)
&&
t
.
get
(
pressurePumpStart
).
equals
(
"true"
))).
collect
(
Collectors
.
toList
());
int
num
=
collect
.
size
();
int
num
=
collect
.
size
();
item
.
put
(
"halfHourStartNum"
,
num
);
item
.
put
(
"halfHourStartNum"
,
num
);
}
}
if
(
200
==
twoHourEntity
.
getStatus
())
{
if
(
200
==
twoHourEntity
.
getStatus
())
{
String
json1
=
JSON
.
toJSONString
(
twoHourEntity
.
getResult
());
String
json1
=
JSON
.
toJSONString
(
twoHourEntity
.
getResult
());
List
<
Map
<
String
,
String
>>
listObject1
=
(
List
<
Map
<
String
,
String
>>)
JSONArray
.
parse
(
json1
);
List
<
Map
<
String
,
String
>>
listObject1
=
(
List
<
Map
<
String
,
String
>>)
JSONArray
.
parse
(
json1
);
List
<
Map
<
String
,
String
>>
collect
=
listObject1
.
stream
().
filter
(
t
->
(
t
.
containsKey
(
"FHS_PressurePump_Start"
)
&&
t
.
get
(
"FHS_PressurePump_Start"
).
equals
(
"true"
))).
collect
(
Collectors
.
toList
());
List
<
Map
<
String
,
String
>>
collect
=
listObject1
.
stream
().
filter
(
t
->
(
t
.
containsKey
(
pressurePumpStart
)
&&
t
.
get
(
pressurePumpStart
).
equals
(
"true"
))).
collect
(
Collectors
.
toList
());
int
num
=
collect
.
size
();
int
num
=
collect
.
size
();
item
.
put
(
"twoHourStartNum"
,
num
);
item
.
put
(
"twoHourStartNum"
,
num
);
}
}
if
(
200
==
fourHourEntity
.
getStatus
())
{
if
(
200
==
fourHourEntity
.
getStatus
())
{
String
json1
=
JSON
.
toJSONString
(
fourHourEntity
.
getResult
());
String
json1
=
JSON
.
toJSONString
(
fourHourEntity
.
getResult
());
List
<
Map
<
String
,
String
>>
listObject1
=
(
List
<
Map
<
String
,
String
>>)
JSONArray
.
parse
(
json1
);
List
<
Map
<
String
,
String
>>
listObject1
=
(
List
<
Map
<
String
,
String
>>)
JSONArray
.
parse
(
json1
);
List
<
Map
<
String
,
String
>>
collect
=
listObject1
.
stream
().
filter
(
t
->
(
t
.
containsKey
(
"FHS_PressurePump_Start"
)
&&
t
.
get
(
"FHS_PressurePump_Start"
).
equals
(
"true"
))).
collect
(
Collectors
.
toList
());
List
<
Map
<
String
,
String
>>
collect
=
listObject1
.
stream
().
filter
(
t
->
(
t
.
containsKey
(
pressurePumpStart
)
&&
t
.
get
(
pressurePumpStart
).
equals
(
"true"
))).
collect
(
Collectors
.
toList
());
int
num
=
collect
.
size
();
int
num
=
collect
.
size
();
item
.
put
(
"fourHourStartNum"
,
num
);
item
.
put
(
"fourHourStartNum"
,
num
);
}
}
...
...
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