Toggle navigation
Toggle navigation
This project
Loading...
Sign in
ufo
/
yohoufo-fore
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
qinchao
2018-12-17 15:17:05 +0800
Commit
5cb8f88eda574d7f61bdf33514aa15a255b42fbc
1 parent
bbd15946
fix: 修改地址时候,如果地址信息没有变化,返回的提示为空串,如果有变化,返回修改成功4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
order/src/main/java/com/yohoufo/order/controller/BuyerOrderController.java
order/src/main/java/com/yohoufo/order/controller/BuyerOrderController.java
View file @
5cb8f88
...
...
@@ -143,7 +143,7 @@ public class BuyerOrderController {
if
(
changed
){
info
=
"修改成功"
;
}
ApiResponse
rtn
=
new
ApiResponse
(
200
,
info
,
null
);
ApiResponse
rtn
=
new
ApiResponse
(
200
,
info
,
"修改地址成功"
);
rtn
.
setMessage
(
info
);
return
rtn
;
}
...
...
Please
register
or
login
to post a comment