Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
MybatisTraning
Project
Project
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
Schedules
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
qin.wen
MybatisTraning
Commits
a61ffec6
Commit
a61ffec6
authored
Jan 02, 2020
by
qin.wen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
--no commit message
parent
036b9386
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
0 deletions
+44
-0
User.java
秦雯_Mybatis2/src/main/java/cesgroup/mybatis2/entity/User.java
+44
-0
No files found.
秦雯_Mybatis2/src/main/java/cesgroup/mybatis2/entity/User.java
0 → 100644
View file @
a61ffec6
package
com
.
cesgroup
.
mybatis2
.
entity
;
package
com
.
cesgroup
.
mybatis2
.
entity
;
import
java.io.Serializable
;
import
com.alibaba.fastjson.JSONObject
;
/**
*
* @author kks
* @date 2020/01/02
*/
public
class
User
implements
Serializable
{
public
int
getId
()
{
return
id
;
}
public
void
setId
(
int
id
)
{
this
.
id
=
id
;
}
public
String
getName
()
{
return
name
;
}
public
void
setName
(
String
name
)
{
this
.
name
=
name
;
}
public
JSONObject
getInfo
()
{
return
info
;
}
public
void
setInfo
(
JSONObject
info
)
{
this
.
info
=
info
;
}
@Override
public
String
toString
()
{
return
"User [id="
+
id
+
", name="
+
name
+
", info="
+
JSONObject
.
toJSONString
(
info
)
+
"]"
;
}
int
id
;
String
name
;
JSONObject
info
;
}
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