huanghongfa
2020-12-10 f76377ffd111434d90c5aaf5507cd33a982d4aa6
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
59
60
61
62
63
64
package com.panzhihua.service_community.model.dos;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * @program: springcloud_k8s_panzhihuazhihuishequ
 * @description: 社区动态
 * @author: huang.hongfa weixin hhf9596 qq 959656820
 * @create: 2020-12-07 14:05
 **/
@Data
@TableName(value = "com_act_dyn")
public class ComActDynDO implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**
     * 自增id
     */
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /**
     * 标题
     */
    private String title;
    /**
     * 状态
     */
    private Integer status;
 
    /**
     * 是否置顶
     */
    private Integer isTopping;
 
    /**
     * 发布时间
     */
    private Date publishAt;
 
    /**
     * 创建时间
     */
    private Date createAt;
 
    /**
     * 修改时间
     */
    private Date updateAt;
    /**
     * 社区id
     */
    private Long communityId;
    /**
     * 动态内容富文本
     */
    private String content;
}