Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
H
Hgs
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
徐州
Hgs
Commits
64a38b43
Commit
64a38b43
authored
Apr 07, 2022
by
徐州
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改接口定时任务接口超时时间
parent
b913bc74
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
StaffDuty.java
...src/main/java/com/house365/ws/service/impl/StaffDuty.java
+2
-1
No files found.
house365-hgs-ws/src/main/java/com/house365/ws/service/impl/StaffDuty.java
View file @
64a38b43
...
@@ -1214,12 +1214,13 @@ public class StaffDuty implements IStaffDuty {
...
@@ -1214,12 +1214,13 @@ public class StaffDuty implements IStaffDuty {
if
(
redisUtils
.
hasKey
(
"active:done:"
+
activeId
))
{
if
(
redisUtils
.
hasKey
(
"active:done:"
+
activeId
))
{
redisUtils
.
deleteByKeyNew
(
"active:done:"
+
activeId
);
redisUtils
.
deleteByKeyNew
(
"active:done:"
+
activeId
);
}
}
List
<
NameValuePair
>
pairList
=
new
ArrayList
<>();
List
<
NameValuePair
>
pairList
=
new
ArrayList
<>();
wrapNameValuePairList
(
pairList
,
entity
);
wrapNameValuePairList
(
pairList
,
entity
);
pairList
.
add
(
new
BasicNameValuePair
(
"page"
,
"1"
));
pairList
.
add
(
new
BasicNameValuePair
(
"page"
,
"1"
));
pairList
.
add
(
new
BasicNameValuePair
(
"limit"
,
"1000"
));
pairList
.
add
(
new
BasicNameValuePair
(
"limit"
,
"1000"
));
pairList
.
add
(
new
BasicNameValuePair
(
"city"
,
city
));
pairList
.
add
(
new
BasicNameValuePair
(
"city"
,
city
));
String
result
=
HttpClientUtil
.
doGet
(
crmQueryUrl
,
pairList
,
6
0000
,
"utf-8"
);
String
result
=
HttpClientUtil
.
doGet
(
crmQueryUrl
,
pairList
,
30
0000
,
"utf-8"
);
String
url
=
crmQueryUrl
+
"?"
;
String
url
=
crmQueryUrl
+
"?"
;
List
<
String
>
params
=
new
ArrayList
<>();
List
<
String
>
params
=
new
ArrayList
<>();
pairList
.
forEach
(
p
->
params
.
add
(
p
.
getName
()
+
"="
+
p
.
getValue
()));
pairList
.
forEach
(
p
->
params
.
add
(
p
.
getName
()
+
"="
+
p
.
getValue
()));
...
...
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