package com.matrix.system.hive.bean; 
 | 
  
 | 
import java.util.Date; 
 | 
import java.io.Serializable; 
 | 
/** 
 | 
 * 
 | 
 * @date 2016-12-12 11:26 
 | 
 */ 
 | 
public class ArticleComment implements Serializable{ 
 | 
  
 | 
    private static final long serialVersionUID = 1L;  
 | 
  
 | 
     
 | 
    private Long  id; 
 | 
             
 | 
     
 | 
    /** 
 | 
     * 评论内容 
 | 
     */ 
 | 
    private String  content; 
 | 
             
 | 
     
 | 
    /** 
 | 
     * 用户id 
 | 
     */ 
 | 
    private Long  userId; 
 | 
             
 | 
     
 | 
    /** 
 | 
     * 父id 
 | 
     */ 
 | 
    private Long  parentId; 
 | 
             
 | 
     
 | 
    /** 
 | 
     * 评论时间 
 | 
     */ 
 | 
    private Date  createTime; 
 | 
             
 | 
     
 | 
    /** 
 | 
     * 文章id 
 | 
     */ 
 | 
    private Long  articleId; 
 | 
             
 | 
     
 | 
    /** 
 | 
     * 类型 
 | 
     */ 
 | 
    private String  type; 
 | 
             
 | 
    private String  vipName; 
 | 
     
 | 
     
 | 
  
 | 
    public String getVipName() { 
 | 
        return vipName; 
 | 
    } 
 | 
  
 | 
    public void setVipName(String vipName) { 
 | 
        this.vipName = vipName; 
 | 
    } 
 | 
  
 | 
    public Long getId() { 
 | 
        return id; 
 | 
    } 
 | 
        
 | 
       public void setId(Long id) { 
 | 
        this.id=id; 
 | 
    } 
 | 
        
 | 
  
 | 
    public String getContent() { 
 | 
        return content; 
 | 
    } 
 | 
        
 | 
       public void setContent(String content) { 
 | 
        this.content=content; 
 | 
    } 
 | 
        
 | 
  
 | 
    public Long getUserId() { 
 | 
        return userId; 
 | 
    } 
 | 
        
 | 
       public void setUserId(Long userId) { 
 | 
        this.userId=userId; 
 | 
    } 
 | 
        
 | 
  
 | 
    public Long getParentId() { 
 | 
        return parentId; 
 | 
    } 
 | 
        
 | 
       public void setParentId(Long parentId) { 
 | 
        this.parentId=parentId; 
 | 
    } 
 | 
        
 | 
  
 | 
    public Date getCreateTime() { 
 | 
        return createTime; 
 | 
    } 
 | 
        
 | 
       public void setCreateTime(Date createTime) { 
 | 
        this.createTime=createTime; 
 | 
    } 
 | 
        
 | 
  
 | 
    public Long getArticleId() { 
 | 
        return articleId; 
 | 
    } 
 | 
        
 | 
       public void setArticleId(Long articleId) { 
 | 
        this.articleId=articleId; 
 | 
    } 
 | 
        
 | 
  
 | 
    public String getType() { 
 | 
        return type; 
 | 
    } 
 | 
        
 | 
       public void setType(String type) { 
 | 
        this.type=type; 
 | 
    } 
 | 
  
 | 
    @Override 
 | 
    public String toString() { 
 | 
        return "ArticleComment [id=" + id + ", content=" + content 
 | 
                + ", userId=" + userId + ", parentId=" + parentId 
 | 
                + ", createTime=" + createTime + ", articleId=" + articleId 
 | 
                + ", type=" + type + "]"; 
 | 
    } 
 | 
        
 | 
   
 | 
} 
 |