Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Q
qk_backend
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
quanku
qk_backend
Commits
33e6d46f
Commit
33e6d46f
authored
Oct 10, 2023
by
shiyu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
关注记录entity vo
parent
cc4c867e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
74 additions
and
0 deletions
+74
-0
ch-wx-api/src/main/java/com/wwdz/ch/wx/entity/vo/FollowFansRecordVo.java
...ain/java/com/wwdz/ch/wx/entity/vo/FollowFansRecordVo.java
+74
-0
No files found.
ch-wx-api/src/main/java/com/wwdz/ch/wx/entity/vo/FollowFansRecordVo.java
0 → 100644
View file @
33e6d46f
package
com.wwdz.ch.wx.entity.vo
;
import
com.xxdxxs.entity.Entity
;
import
lombok.Data
;
import
java.util.Date
;
@Data
public
class
FollowFansRecordVo
implements
Entity
{
private
Integer
id
;
/**
* 粉丝id
*/
private
Long
fansId
;
private
String
fansName
;
/**
* 粉丝头像
*/
private
String
fansIcon
;
/**
* 粉丝个人简介
*/
private
String
fansProfile
;
/**
* 被关注者id
*/
private
Long
followerId
;
private
String
followerName
;
/**
* 关注人头像
*/
private
String
followerIcon
;
/**
* 关注的人个人简介
*/
private
String
followerProfile
;
/**
* 关系(已关注,互相关注,未关注)
*/
private
String
relation
;
/**
* 关系(已关注,互相关注,未关注)
*/
private
Integer
relationCode
;
/**
* 创建时间
*/
private
Date
createTime
;
/**
* 更新时间
*/
private
Date
updateTime
;
/**
* 状态
*/
private
Integer
state
;
private
String
stateName
;
}
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