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 13:18:06 +0800
Commit
7a30b2ed757e6a5436deb6f35ef3a8ca7d2babed
1 parent
a2272c30
fix: 修改地址时候,如果地址信息没有变化,返回的提示为空串,如果有变化,返回修改成功2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 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 @
7a30b2e
...
...
@@ -143,7 +143,9 @@ public class BuyerOrderController {
if
(
changed
){
info
=
"修改成功"
;
}
return
new
ApiResponse
.
ApiResponseBuilder
().
code
(
200
).
message
(
info
).
build
();
ApiResponse
rtn
=
new
ApiResponse
(
200
,
info
,
null
);
rtn
.
setMessage
(
info
);
return
rtn
;
}
...
...
Please
register
or
login
to post a comment