Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
matrix
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
CI / CD
CI / CD
Pipelines
Schedules
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
mall
arch
matrix
Commits
5c0f9fb9
Commit
5c0f9fb9
authored
Aug 13, 2019
by
haozi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
response增加toString方法
parent
2fd6b519
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
Response.java
common-core/src/main/java/com/secoo/mall/common/core/bean/Response.java
+9
-0
No files found.
common-core/src/main/java/com/secoo/mall/common/core/bean/Response.java
View file @
5c0f9fb9
...
...
@@ -39,4 +39,13 @@ public class Response<T> implements Serializable {
public
void
setData
(
T
data
)
{
this
.
data
=
data
;
}
@Override
public
String
toString
()
{
return
"Response{"
+
"code="
+
code
+
", msg='"
+
msg
+
", data="
+
data
+
'}'
;
}
}
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