2
13693261870
2022-09-16 653761a31dfeb50dd3d007e892d69c90bf0cdafc
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
package com.landtool.lanbase.modules.sys.entity;
 
import java.io.Serializable;
 
/**
 * @author lanbase
 * @Description: TODO(资讯动态)
 * @date 2018-01-16 09:04:50
 */
public class PubNews implements Serializable {
 
    //自增主键
    private Integer newsid;
    //标题
    private String title;
    //类型:通知公告、资讯动态
    private String type;
    //创建时间
    private String createdate;
    //创建人中文名
    private String createusername;
    //总数(add:dsh/2018/12/05)
    private Integer count;
    /**
     * 设置:自增主键
     */
    public void setNewsid(Integer newsid) {
        this.newsid = newsid;
    }
    /**
     * 获取:自增主键
     */
    public Integer getNewsid() {
        return newsid;
    }
    /**
     * 设置:标题
     */
    public void setTitle(String title) {
        this.title = title;
    }
    /**
     * 获取:标题
     */
    public String getTitle() {
        return title;
    }
    /**
     * 设置:类型:通知公告、资讯动态
     */
    public void setType(String type) {
        this.type = type;
    }
    /**
     * 获取:类型:通知公告、资讯动态
     */
    public String getType() {
        return type;
    }
    /**
     * 设置:创建时间
     */
    public void setCreatedate(String createdate) {
        this.createdate = createdate;
    }
    /**
     * 获取:创建时间
     */
    public String getCreatedate() {
        return createdate;
    }
    /**
     * 设置:创建人中文名
     */
    public void setCreateusername(String createusername) {
        this.createusername = createusername;
    }
    /**
     * 获取:创建人中文名
     */
    public String getCreateusername() {
        return createusername;
    }
 
    public void setCount(Integer count) {
        this.count = count;
    }
 
    public Integer getCount() {
        return count;
    }
}