package com.xcong.excoin.modules.helpCenter.entity;  
 | 
  
 | 
import java.util.Date;  
 | 
  
 | 
import com.baomidou.mybatisplus.annotation.IdType;  
 | 
import com.baomidou.mybatisplus.annotation.TableId;  
 | 
import com.baomidou.mybatisplus.annotation.TableName;  
 | 
import com.fasterxml.jackson.annotation.JsonFormat;  
 | 
  
 | 
import lombok.Data;  
 | 
  
 | 
/**  
 | 
 * 文章内容  
 | 
 */  
 | 
@Data  
 | 
@TableName("help_center_article")  
 | 
public class HelpCenterArticleEntity {  
 | 
      
 | 
    @TableId(value = "id",type = IdType.AUTO)  
 | 
    private Long id;  
 | 
    /**  
 | 
     * 创建者  
 | 
     */  
 | 
    private String createBy;  
 | 
    /**  
 | 
     * 创建时间  
 | 
     */  
 | 
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")  
 | 
    private Date createTime;  
 | 
    /**  
 | 
     * 语言类型(1:简体中文2:英文)  
 | 
     */  
 | 
    private int typeLanguage;  
 | 
    /**  
 | 
     * 标题  
 | 
     */  
 | 
    private String title;  
 | 
    /**  
 | 
     * 内容  
 | 
     */  
 | 
    private String content;  
 | 
  
 | 
}  
 |