Commit 33e6d46f authored by shiyu's avatar shiyu

关注记录entity vo

parent cc4c867e
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;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment