Helius
2021-06-29 5252d1396e21a16774be699a5ba1c8d39c14a22e
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
package com.xzx.gc.entity;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import javax.persistence.*;
import lombok.Data;
 
@Data
@ApiModel("")
@Table(name = "xzx_sys_notice")
public class SysNotice {
    /**
     * 主键,公告ID
     */
    @Id
    @Column(name = "notice_id")
    @ApiModelProperty("主键,公告ID")
    private Long noticeId;
 
    /**
     * 标题
     */
    @ApiModelProperty("标题")
    private String title;
 
    /**
     * 内容
     */
    @ApiModelProperty("内容")
    private String content;
 
    /**
     * 创建时间
     */
    @Column(name = "create_time")
    @ApiModelProperty("创建时间")
    private String createTime;
 
    @Column(name = "create_user_id")
    @ApiModelProperty("")
    private String createUserId;
 
    /**
     * 关联图片路径,多条记录逗号分隔
     */
    @ApiModelProperty("关联图片路径,多条记录逗号分隔")
    private String picture;
 
    /**
     * 公告类型,1为新闻2为投诉3为反馈建议
     */
    @Column(name = "notice_type")
    @ApiModelProperty("公告类型,1为新闻2为投诉3为反馈建议")
    private String noticeType;
 
    /**
     * 投诉类型
     */
    @Column(name = "complaint_type")
    @ApiModelProperty("投诉类型")
    private String complaintType;
 
    /**
     * 阅读量
     */
    @Column(name = "read_num")
    @ApiModelProperty("阅读量")
    private Integer readNum;
}