| package com.xcong.excoin.modules.systemSetting.entity;  | 
|   | 
| import java.io.Serializable;  | 
| 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("platform_notice")  | 
| public class PlatformNoticeEntity implements Serializable {/**  | 
|      *   | 
|      */  | 
|     private static final long serialVersionUID = 1L;  | 
|     @TableId(value = "id",type = IdType.AUTO)  | 
|     private Long id;  | 
|     /**  | 
|      * 标题  | 
|      */  | 
|     private String title;  | 
|     /**  | 
|      * 类别  | 
|      */  | 
|     private int categoryid;  | 
|     private String categoryname;  | 
|     private String source;  | 
|     private String content;  | 
|       | 
|     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")  | 
|     private Date createTime;  | 
|   | 
| }  |