cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
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
package cn.ksource.entity;
 
/**
 * Created by chenlong
 * Date:2017/8/14
 * time:18:13
 */
public class SysMessage {
 
    public SysMessage() {
    }
 
    public SysMessage(String title, String url) {
        this.title = title;
        this.url = url;
    }
 
    private String title;
 
    private String url;
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getUrl() {
        return url;
    }
 
    public void setUrl(String url) {
        this.url = url;
    }
 
}