Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cloud-platform
Project
Project
Details
Activity
Releases
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
youjj
cloud-platform
Commits
f26b9878
Commit
f26b9878
authored
Jul 08, 2019
by
hezhen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
123
parent
c8c6db99
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
50 additions
and
0 deletions
+50
-0
BaseUserRelation.java
...ithub/wxiaoqi/security/admin/entity/BaseUserRelation.java
+50
-0
No files found.
ace-modules/ace-admin/src/main/java/com/github/wxiaoqi/security/admin/entity/BaseUserRelation.java
→
ace-modules/ace-admin
-api
/src/main/java/com/github/wxiaoqi/security/admin/entity/BaseUserRelation.java
View file @
f26b9878
package
com
.
github
.
wxiaoqi
.
security
.
admin
.
entity
;
import
lombok.Data
;
import
javax.persistence.Column
;
import
javax.persistence.Id
;
import
javax.persistence.Table
;
import
java.io.Serializable
;
import
javax.persistence.*
;
/**
...
...
@@ -11,6 +14,7 @@ import javax.persistence.*;
* @email 463540703@qq.com
* @date 2019-06-04 14:29:29
*/
@Data
@Table
(
name
=
"base_user_relation"
)
public
class
BaseUserRelation
implements
Serializable
{
private
static
final
long
serialVersionUID
=
1L
;
...
...
@@ -42,90 +46,5 @@ public class BaseUserRelation implements Serializable {
//是否删除;0-正常;1-删除
@Column
(
name
=
"is_del"
)
private
Integer
isDel
;
/**
* 设置:主键id
*/
public
void
setId
(
Integer
id
)
{
this
.
id
=
id
;
}
/**
* 获取:主键id
*/
public
Integer
getId
()
{
return
id
;
}
/**
* 设置:用户id
*/
public
void
setUserId
(
Integer
userId
)
{
this
.
userId
=
userId
;
}
/**
* 获取:用户id
*/
public
Integer
getUserId
()
{
return
userId
;
}
/**
* 设置:小程序用户id
*/
public
void
setToUid
(
Integer
toUid
)
{
this
.
toUid
=
toUid
;
}
/**
* 获取:小程序用户id
*/
public
Integer
getToUid
()
{
return
toUid
;
}
/**
* 设置:是否有效;0-有效;1-无效
*/
public
void
setStaus
(
Integer
staus
)
{
this
.
staus
=
staus
;
}
/**
* 获取:是否有效;0-有效;1-无效
*/
public
Integer
getStaus
()
{
return
staus
;
}
/**
* 设置:创建时间
*/
public
void
setCrtTime
(
Long
crtTime
)
{
this
.
crtTime
=
crtTime
;
}
/**
* 获取:创建时间
*/
public
Long
getCrtTime
()
{
return
crtTime
;
}
/**
* 设置:更新时间
*/
public
void
setUpdTime
(
Long
updTime
)
{
this
.
updTime
=
updTime
;
}
/**
* 获取:更新时间
*/
public
Long
getUpdTime
()
{
return
updTime
;
}
/**
* 设置:是否删除;0-正常;1-删除
*/
public
void
setIsDel
(
Integer
isDel
)
{
this
.
isDel
=
isDel
;
}
/**
* 获取:是否删除;0-正常;1-删除
*/
public
Integer
getIsDel
()
{
return
isDel
;
}
}
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