Toggle navigation
Toggle navigation
This project
Loading...
Sign in
crp
/
crp-operation
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
wanghongbo
2025-07-25 13:46:25 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
abbc09f344a84bfa7a2946d9463ff223ed89bcd9
abbc09f3
1 parent
907f9a72
调用延时、屏蔽接口修改
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
src/main/java/com/wondertek/service/impl/RoomOperationServiceImpl.java
src/main/java/com/wondertek/service/impl/RoomOperationServiceImpl.java
View file @
abbc09f
...
...
@@ -94,7 +94,7 @@ public class RoomOperationServiceImpl implements RoomOperationSerivice {
paramsMap
.
put
(
"delayTime"
,
delayTime
);
HttpResponse
execute
=
null
;
try
{
execute
=
HttpRequest
.
p
os
t
(
delayTimeUrl
)
execute
=
HttpRequest
.
p
u
t
(
delayTimeUrl
)
.
header
(
"Content-Type"
,
"application/json"
)
.
body
(
JSONUtils
.
obj2json
(
paramsMap
)).
timeout
(
30000
).
execute
();
if
(
execute
.
isOk
())
{
...
...
@@ -136,7 +136,7 @@ public class RoomOperationServiceImpl implements RoomOperationSerivice {
paramsMap
.
put
(
"blockStatus"
,
blockParam
.
getBlockStatus
());
HttpResponse
execute
=
null
;
try
{
execute
=
HttpRequest
.
p
os
t
(
blockStatusUrl
)
execute
=
HttpRequest
.
p
u
t
(
blockStatusUrl
)
.
header
(
"Content-Type"
,
"application/json"
)
.
body
(
JSONUtils
.
obj2json
(
paramsMap
)).
timeout
(
30000
).
execute
();
if
(
execute
.
isOk
())
{
...
...
Please
register
or
login
to post a comment