记得上下班打卡 | git大法好,push需谨慎
Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liquidnet-bus-v1
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
董敬伟
liquidnet-bus-v1
Commits
a7537a58
Commit
a7537a58
authored
Mar 11, 2022
by
sunyuntian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
smile_user
parent
905889c6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
166 additions
and
0 deletions
+166
-0
User.java
...c/main/java/com/liquidnet/service/goblin/entity/User.java
+166
-0
No files found.
liquidnet-bus-do/liquidnet-service-goblin-do/src/main/java/com/liquidnet/service/goblin/entity/User.java
0 → 100644
View file @
a7537a58
package
com
.
liquidnet
.
service
.
goblin
.
entity
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
java.io.Serializable
;
import
java.time.LocalDate
;
import
java.time.LocalDateTime
;
/**
* <p>
*
* </p>
*
* @author jobob
* @since 2022-03-11
*/
@Data
@EqualsAndHashCode
(
callSuper
=
false
)
@TableName
(
"smile_user"
)
public
class
User
implements
Serializable
{
private
static
final
long
serialVersionUID
=
1L
;
/**
* 照片
*/
private
String
img
;
/**
* 真实姓名
*/
private
String
name
;
/**
* 生日YYYY-MM-DD
*/
private
LocalDate
birthday
;
/**
* 性别(1:男(默认),2:女)
*/
private
Integer
sex
;
/**
* 手机号
*/
private
String
phone
;
/**
* 省key
*/
private
Integer
provinceKey
;
/**
* 省
*/
private
String
province
;
/**
* 市key
*/
private
Integer
cityKey
;
/**
* 市
*/
private
String
city
;
/**
* 区key
*/
private
Integer
areaKey
;
/**
* 区
*/
private
String
area
;
/**
* 详细地址
*/
private
String
address
;
/**
* 微信号
*/
private
String
wechat
;
/**
* 代理类型(1:总代,2:普代)
*/
private
Integer
type
;
/**
* 组织关联
*/
private
Long
orgId
;
/**
* 身份证号
*/
private
Long
idCard
;
/**
* 学校名称
*/
private
String
schoolName
;
/**
* 专业
*/
private
String
schoolMajor
;
/**
* 身份(1:在校学生(默认),2已毕业)
*/
private
Integer
identity
;
/**
* 标识步骤
*/
private
Integer
tag
;
/**
* 1:代理开启,2:代理关闭
*/
private
Integer
agent
;
/**
* 自我介绍
*/
private
String
introduce
;
/**
* 擅长1
*/
private
String
specialty1
;
/**
* 擅长2
*/
private
String
specialty2
;
/**
* 擅长3
*/
private
String
specialty3
;
/**
* 正常/黑名单
*/
private
Integer
state
;
/**
* 0:删除,1正常
*/
private
Integer
delTag
;
private
LocalDateTime
createdDate
;
private
LocalDateTime
updatedDate
;
}
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