|
|
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_comment")
|
|
|
@EqualsAndHashCode(callSuper = true)
|
|
|
public class PublicUserComment extends BaseEntity implements Serializable {
|
|
|
|
|
|
private Integer uid;
|
|
|
|
|
|
@Column(name = "to_uid")
|
|
|
private Integer toUid;
|
|
|
|
|
|
@Column(name = "article_id")
|
|
|
private Integer articleId;
|
|
|
|
|
|
@Column(name = "to_comment_id")
|
|
|
private Integer toCommentId;
|
|
|
|
|
|
@Column(name = "content_data")
|
|
|
private String contentData;
|
|
|
|
|
|
@Column(name = "root_id")
|
|
|
private Integer rootId;
|
|
|
|
|
|
@Column(name = "floor_num")
|
|
|
private Integer floorNum;
|
|
|
|
|
|
@Column(name = "relate_id")
|
|
|
private Integer relateId;
|
|
|
|
|
|
@Column(name = "relate_parent_id")
|
|
|
private Integer relateParentId;
|
|
|
|
|
|
@Column(name = "praise_num")
|
|
|
private Integer praiseNum;
|
|
|
|
|
|
@Column(name = "virtual_praise_num")
|
|
|
private Integer virtualPraiseNum;
|
|
|
|
|
|
@Column(name = "src_channel")
|
|
|
private Integer srcChannel;
|
|
|
|
|
|
@Column(name = "audit_status")
|
|
|
private Integer auditStatus;
|
|
|
|
|
|
@Column(name = "audit_account")
|
|
|
private String auditAccount;
|
|
|
|
|
|
@Column(name = "audit_time")
|
|
|
private Long auditTime;
|
|
|
|
|
|
@Column(name = "create_time")
|
|
|
private Long createTime;
|
|
|
|
|
|
@Column(name = "update_time")
|
|
|
private Long updateTime;
|
|
|
|
|
|
} |
...
|
...
|
|