xiaoyong931011
2020-08-12 420b90cd27ea932f64b25f3394967fd532cca186
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package com.xcong.excoin.modules.helpCenter.entity;
 
import java.util.Date;
 
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
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_notice")
public class HelpCenterNoticeEntity {
    
    @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 articleNotice;
    /**
     * 文章id
     */
    private Long articleId;
    /**
     *文章标题
     */
    private String articleTitle;
    /**
     * 文章id
     */
    private Long articleIdUs;
    /**
     *文章标题
     */
    private String articleTitleUs;
    
    @TableField(exist = false)
    private String createTimeString;
    
    
 
}