huanghongfa
2021-01-22 04c96f26282f021fcc59b40d6f11f172fc070af8
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
71
package com.panzhihua.service_community.model.dos;
 
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * @program: springcloud_k8s_panzhihuazhihuishequ
 * @description: 一起议
 * @author: huang.hongfa weixin hhf9596 qq 959656820
 * @create: 2021-01-22 14:48
 **/
@Data
@TableName(value = "com_act_discuss")
public class ComActDiscussDO implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键
     */
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /**
     * 主题
     */
    private String subject;
 
    /**
     * 类型 1 图文 2 投票
     */
    private Integer type;
 
    /**
     * 图片地址 多个用逗号隔开
     */
    private String photoPah;
 
    /**
     * 地址
     */
    private String address;
 
    /**
     * 发布人主键
     */
    private Long userId;
 
    /**
     * 社区主键
     */
    private Long communityId;
 
    /**
     * create_at
     */
    @TableField(fill = FieldFill.INSERT)
    private Date createAt;
 
    /**
     * 1 单选 2 多选
     */
    private Integer option;
 
    /**
     * 投票标题
     */
    private String voteTitle;
}