huanghongfa
2021-01-05 d9eee1919dbff7ffddc48b1f4fee2ec41a54a2a2
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
package com.panzhihua.service_user.model.dos;
 
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.TableField;
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-31 13:22
 **/
@Data
@TableName("sys_user_feedback")
public class SysUserFeedbackDO implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**
     * id
     */
    private Long id;
 
    /**
     * 反馈内容
     */
    private String content;
 
    /**
     * 反馈图片,多个用逗号隔开
     */
    private String photoPath;
 
    /**
     * create_at
     */
    @TableField(fill = FieldFill.INSERT)
    private Date createAt;
 
    /**
     * update_at
     */
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private Date updateAt;
 
    /**
     * 用户的id
     */
    private Long userId;
 
    /**
     * 小区id
     */
    private Long areaId;
 
    /**
     * 社区id
     */
    private Long communityId;
    /**
     * 状态
     */
    private Integer status;
}