Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ajb-backend-car
Overview
Overview
Details
Activity
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
AutogeneralShanghai
ajb-backend-car
Commits
0836c707
Commit
0836c707
authored
Jul 26, 2018
by
Simon Cheng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mdev发布测试
parent
2a848c0e
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
0 deletions
+36
-0
ajb-car-vo/.settings/org.eclipse.core.resources.prefs
+1
-0
ajb-car-vo/src/main/java/com/ajb/car/vo/common/JsonResult.java
+35
-0
No files found.
ajb-car-vo/.settings/org.eclipse.core.resources.prefs
View file @
0836c707
eclipse.preferences.version=1
encoding//src/main/java=UTF-8
encoding//src/main/java/com/ajb/car/vo/common/JsonResult.java=UTF-8
encoding/<project>=UTF-8
ajb-car-vo/src/main/java/com/ajb/car/vo/common/JsonResult.java
0 → 100644
View file @
0836c707
package
com
.
ajb
.
car
.
vo
.
common
;
import
java.io.Serializable
;
public
class
JsonResult
implements
Serializable
{
/**
*
*/
private
static
final
long
serialVersionUID
=
1L
;
private
boolean
success
;
private
String
message
;
private
Object
data
;
public
boolean
isSuccess
()
{
return
success
;
}
public
void
setSuccess
(
boolean
success
)
{
this
.
success
=
success
;
}
public
String
getMessage
()
{
return
message
;
}
public
void
setMessage
(
String
message
)
{
this
.
message
=
message
;
}
public
Object
getData
()
{
return
data
;
}
public
void
setData
(
Object
data
)
{
this
.
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