记得上下班打卡 | git大法好,push需谨慎
Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liquidnet-bus-v1
Project
Project
Details
Activity
Releases
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
董敬伟
liquidnet-bus-v1
Commits
8403c480
Commit
8403c480
authored
Nov 10, 2021
by
zhengfuxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改预支付返参
parent
f6968b4e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
2 deletions
+9
-2
DragonPayBaseRespDto.java
...om/liquidnet/service/dragon/dto/DragonPayBaseRespDto.java
+4
-0
AbstractDouYinPayStrategy.java
...el/douyinpay/strategy/impl/AbstractDouYinPayStrategy.java
+1
-1
DouYinPayStrategyAppletImpl.java
.../douyinpay/strategy/impl/DouYinPayStrategyAppletImpl.java
+4
-1
No files found.
liquidnet-bus-api/liquidnet-service-dragon-api/src/main/java/com/liquidnet/service/dragon/dto/DragonPayBaseRespDto.java
View file @
8403c480
...
@@ -63,5 +63,9 @@ public class DragonPayBaseRespDto implements Serializable {
...
@@ -63,5 +63,9 @@ public class DragonPayBaseRespDto implements Serializable {
private
String
redirectUrl
;
private
String
redirectUrl
;
private
String
orderStr
;
private
String
orderStr
;
private
String
orderId
;
private
String
orderToken
;
}
}
}
}
liquidnet-bus-service/liquidnet-service-dragon/liquidnet-service-dragon-impl/src/main/java/com/liquidnet/service/dragon/channel/douyinpay/strategy/impl/AbstractDouYinPayStrategy.java
View file @
8403c480
...
@@ -103,7 +103,7 @@ public abstract class AbstractDouYinPayStrategy implements IDouYinpayStrategy {
...
@@ -103,7 +103,7 @@ public abstract class AbstractDouYinPayStrategy implements IDouYinpayStrategy {
//成功
//成功
respDto
=
this
.
buildResponseDto
(
respDto
,
result
);
respDto
=
this
.
buildResponseDto
(
respDto
,
result
);
//支付订单持久化
//支付订单持久化
//
dragonServiceCommonBiz.buildPayOrders(dragonPayBaseReqDto,respDto);
dragonServiceCommonBiz
.
buildPayOrders
(
dragonPayBaseReqDto
,
respDto
);
log
.
info
(
"douYinpay-->dragonPay--> 耗时:{}"
,(
System
.
currentTimeMillis
()
-
startTimeTotal
)+
"毫秒"
);
log
.
info
(
"douYinpay-->dragonPay--> 耗时:{}"
,(
System
.
currentTimeMillis
()
-
startTimeTotal
)+
"毫秒"
);
return
ResponseDto
.
success
(
respDto
);
return
ResponseDto
.
success
(
respDto
);
}
else
{
}
else
{
...
...
liquidnet-bus-service/liquidnet-service-dragon/liquidnet-service-dragon-impl/src/main/java/com/liquidnet/service/dragon/channel/douyinpay/strategy/impl/DouYinPayStrategyAppletImpl.java
View file @
8403c480
...
@@ -37,7 +37,10 @@ public class DouYinPayStrategyAppletImpl extends AbstractDouYinPayStrategy {
...
@@ -37,7 +37,10 @@ public class DouYinPayStrategyAppletImpl extends AbstractDouYinPayStrategy {
@Override
@Override
DragonPayBaseRespDto
buildResponseDto
(
DragonPayBaseRespDto
payBaseRespDto
,
Map
result
)
{
DragonPayBaseRespDto
buildResponseDto
(
DragonPayBaseRespDto
payBaseRespDto
,
Map
result
)
{
return
null
;
Map
data
=
(
Map
)
result
.
get
(
"data"
);
payBaseRespDto
.
getPayData
().
setOrderId
(
data
.
get
(
"order_id"
).
toString
());
payBaseRespDto
.
getPayData
().
setOrderToken
(
data
.
get
(
"order_token"
).
toString
());
return
payBaseRespDto
;
}
}
...
...
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