Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
data-center
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
廖鑫
data-center
Commits
01a384e3
Commit
01a384e3
authored
Nov 19, 2021
by
shenxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
省一体化营山推送
parent
acdd451e
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletion
+12
-1
dataCenter-manager/src/main/java/com/mortals/xhx/modules/information/task/ApplyAndAcceptInformationTaskImpl.java
...s/information/task/ApplyAndAcceptInformationTaskImpl.java
+4
-0
dataCenter-manager/src/main/java/com/mortals/xhx/modules/information/task/DecideInformationTaskImpl.java
...x/modules/information/task/DecideInformationTaskImpl.java
+4
-0
dataCenter-manager/src/main/java/com/mortals/xhx/modules/information/task/ReviewInformationTaskImpl.java
...x/modules/information/task/ReviewInformationTaskImpl.java
+4
-1
No files found.
dataCenter-manager/src/main/java/com/mortals/xhx/modules/information/task/ApplyAndAcceptInformationTaskImpl.java
View file @
01a384e3
...
@@ -78,6 +78,10 @@ public class ApplyAndAcceptInformationTaskImpl implements ITaskExcuteService {
...
@@ -78,6 +78,10 @@ public class ApplyAndAcceptInformationTaskImpl implements ITaskExcuteService {
CallRecordEntity
recordEntity
=
new
CallRecordEntity
();
CallRecordEntity
recordEntity
=
new
CallRecordEntity
();
try
{
try
{
post
=
HttpUtil
.
post
(
extCache
.
getAcceptAdress
(),
JSONObject
.
toJSONString
(
dataMap
));
post
=
HttpUtil
.
post
(
extCache
.
getAcceptAdress
(),
JSONObject
.
toJSONString
(
dataMap
));
if
(
StringUtils
.
isEmpty
(
post
)){
e
.
setIsSuccess
(
"0"
);
return
e
;
}
ifResultInfo
=
JSONObject
.
parseObject
(
JSONObject
.
parseObject
(
post
).
getString
(
"ifResultInfo"
));
ifResultInfo
=
JSONObject
.
parseObject
(
JSONObject
.
parseObject
(
post
).
getString
(
"ifResultInfo"
));
log
.
info
(
"响应值"
+
ifResultInfo
);
log
.
info
(
"响应值"
+
ifResultInfo
);
if
(
"200"
.
equals
(
ifResultInfo
.
getString
(
"code"
)))
{
if
(
"200"
.
equals
(
ifResultInfo
.
getString
(
"code"
)))
{
...
...
dataCenter-manager/src/main/java/com/mortals/xhx/modules/information/task/DecideInformationTaskImpl.java
View file @
01a384e3
...
@@ -113,6 +113,10 @@ public class DecideInformationTaskImpl implements ITaskExcuteService {
...
@@ -113,6 +113,10 @@ public class DecideInformationTaskImpl implements ITaskExcuteService {
extCache
.
setSysCode
(
e
.
getSystemCode
());
extCache
.
setSysCode
(
e
.
getSystemCode
());
extCache
=
arameterService
.
find
(
extCache
).
get
(
0
);
extCache
=
arameterService
.
find
(
extCache
).
get
(
0
);
post
=
HttpUtil
.
post
(
extCache
.
getDecideAdress
(),
JSONObject
.
toJSONString
(
dataMap
));
post
=
HttpUtil
.
post
(
extCache
.
getDecideAdress
(),
JSONObject
.
toJSONString
(
dataMap
));
if
(
StringUtils
.
isEmpty
(
post
)){
e
.
setIsSuccess
(
"0"
);
return
e
;
}
ifResultInfo
=
JSONObject
.
parseObject
(
JSONObject
.
parseObject
(
post
).
getString
(
"ifResultInfo"
));
ifResultInfo
=
JSONObject
.
parseObject
(
JSONObject
.
parseObject
(
post
).
getString
(
"ifResultInfo"
));
log
.
info
(
"响应值"
+
ifResultInfo
);
log
.
info
(
"响应值"
+
ifResultInfo
);
if
(
"200"
.
equals
(
ifResultInfo
.
getString
(
"code"
)))
{
if
(
"200"
.
equals
(
ifResultInfo
.
getString
(
"code"
)))
{
...
...
dataCenter-manager/src/main/java/com/mortals/xhx/modules/information/task/ReviewInformationTaskImpl.java
View file @
01a384e3
...
@@ -114,7 +114,10 @@ public class ReviewInformationTaskImpl implements ITaskExcuteService {
...
@@ -114,7 +114,10 @@ public class ReviewInformationTaskImpl implements ITaskExcuteService {
extCache
.
setSysCode
(
e
.
getSystemCode
());
extCache
.
setSysCode
(
e
.
getSystemCode
());
extCache
=
arameterService
.
find
(
extCache
).
get
(
0
);
extCache
=
arameterService
.
find
(
extCache
).
get
(
0
);
post
=
HttpUtil
.
post
(
extCache
.
getReviewAdress
(),
JSONObject
.
toJSONString
(
dataMap
));
post
=
HttpUtil
.
post
(
extCache
.
getReviewAdress
(),
JSONObject
.
toJSONString
(
dataMap
));
log
.
info
(
"响应值"
+
JSONObject
.
parseObject
(
post
));
if
(
StringUtils
.
isEmpty
(
post
)){
e
.
setIsSuccess
(
"0"
);
return
e
;
}
ifResultInfo
=
JSONObject
.
parseObject
(
JSONObject
.
parseObject
(
post
).
getString
(
"ifResultInfo"
));
ifResultInfo
=
JSONObject
.
parseObject
(
JSONObject
.
parseObject
(
post
).
getString
(
"ifResultInfo"
));
log
.
info
(
"响应值"
+
ifResultInfo
);
log
.
info
(
"响应值"
+
ifResultInfo
);
if
(
"200"
.
equals
(
ifResultInfo
.
getString
(
"code"
)))
{
if
(
"200"
.
equals
(
ifResultInfo
.
getString
(
"code"
)))
{
...
...
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