huanghongfa
2021-01-15 ada9d2e3f734582a0d9ae8c00a936d8c8ed669d7
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
65
66
67
68
69
70
package com.panzhihua.service_dangjian.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-01 15:47
 **/
@Data
@TableName(value = "com_pb_dyn")
public class ComPbDynDO implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**
     * 党建动态id
     */
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /**
     * 标题
     */
    private String title;
 
    /**
     * 状态  1 待发布 2 已发布
     */
    private Integer status;
 
    /**
     * 发布时间
     */
    private Date publishAt;
 
    /**
     * 封面url
     */
    private String cover;
 
    /**
     * 创建时间
     */
    private Date createAt;
 
    /**
     * 内容
     */
    private String content;
 
    /**
     * 党员表创建人主键id
     */
    private Long createBy;
    /**
     * 1动态 2政策文件
     */
    private Integer type;
    /**
     * 社区id
     */
    private Long communityId;
}