|
|
package com.yoho.datasync.core.base.model.yh_pcms;
|
|
|
|
|
|
|
|
|
import com.yoho.datasync.core.base.model.yh_pcms.base.BaseEntity;
|
|
|
import lombok.Data;
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
import javax.persistence.Entity;
|
|
|
import javax.persistence.Table;
|
|
|
import java.io.Serializable;
|
|
|
|
|
|
@Data
|
|
|
@Entity
|
|
|
@Table(name = "public_user_homepage")
|
|
|
@EqualsAndHashCode(callSuper = true)
|
|
|
public class PublicUserHomepage extends BaseEntity implements Serializable {
|
|
|
|
|
|
private Integer uid;
|
|
|
|
|
|
@Column(name = "atten_count")
|
|
|
private Integer attenCount;
|
|
|
|
|
|
@Column(name = "fans_count")
|
|
|
private Integer fansCount;
|
|
|
|
|
|
@Column(name = "praise_amount")
|
|
|
private Integer praiseAmount;
|
|
|
|
|
|
@Column(name = "favorite_amount")
|
|
|
private Integer favoriteAmount;
|
|
|
|
|
|
private String signature;
|
|
|
|
|
|
@Column(name = "user_type")
|
|
|
private Integer userType;
|
|
|
|
|
|
@Column(name = "author_id")
|
|
|
private Integer authorId;
|
|
|
|
|
|
@Column(name = "is_forbidden")
|
|
|
private Integer isForbidden;
|
|
|
|
|
|
@Column(name = "src_channel")
|
|
|
private Integer srcChannel;
|
|
|
|
|
|
@Column(name = "create_time")
|
|
|
private Long createTime;
|
|
|
|
|
|
@Column(name = "update_time")
|
|
|
private Long updateTime;
|
|
|
|
|
|
} |
...
|
...
|
|