Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
X
xyqb-user2
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
head_group
xyqb-user2
Commits
943795eb
Commit
943795eb
authored
Jun 19, 2017
by
技术部—现金贷—曾丽宾
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加运营系统服务地址配置
parent
09a8eafe
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
4 deletions
+12
-4
UserQueryLogController.java
.../controller/external/queryLog/UserQueryLogController.java
+5
-2
xyqb.properties
src/main/resources/config/dev/xyqb.properties
+4
-1
xyqb.properties
src/main/resources/config/release01/xyqb.properties
+3
-1
No files found.
src/main/java/cn/quantgroup/xyqb/controller/external/queryLog/UserQueryLogController.java
View file @
943795eb
...
...
@@ -59,6 +59,10 @@ public class UserQueryLogController {
private
String
payCenterUrl
;
@Value
(
"${xyqb.paycenter.id}"
)
private
String
payCenterId
;
@Value
(
"${xyqb.yunying.url}"
)
private
String
yunyingUrl
;
@Autowired
private
IHttpService
httpService
;
...
...
@@ -451,9 +455,8 @@ public class UserQueryLogController {
HashMap
<
String
,
String
>
parameters
=
new
HashMap
<>();
parameters
.
put
(
"token"
,
token
);
String
url
=
"http://192.168.4.50:7047"
;
//访问用户中心查询用户银行卡接口
String
resultStr
=
httpService
.
post
(
u
rl
+
"/user/info"
,
parameters
);
String
resultStr
=
httpService
.
post
(
yunyingU
rl
+
"/user/info"
,
parameters
);
try
{
JsonObject
resultUser
=
new
JsonParser
().
parse
(
resultStr
).
getAsJsonObject
();
if
(
resultUser
.
get
(
"code"
).
getAsString
().
equals
(
"0000"
)&&
resultUser
.
get
(
"data"
).
getAsJsonObject
()!=
null
){
...
...
src/main/resources/config/dev/xyqb.properties
View file @
943795eb
...
...
@@ -93,3 +93,6 @@ xyqb.domain = http://192.168.4.153:7003
xyqb.paycenter.url
=
http://192.168.4.26:7006
xyqb.paycenter.id
=
3
#运营系统认证地址
xyqb.yunying.url
=
http://192.168.4.50:7047
\ No newline at end of file
src/main/resources/config/release01/xyqb.properties
View file @
943795eb
...
...
@@ -57,3 +57,5 @@ xyqb.domain = http://api.xyqb.com
xyqb.paycenter.url
=
http://payapi.xyqb.com/
xyqb.paycenter.id
=
3
#内部运营系统
xyqb.yunying.url
=
http://192.168.4.50:7047
\ No newline at end of file
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