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
package com.yeshi.buwan.domain.news;
 
import com.yeshi.buwan.domain.system.DetailSystem;
 
public class SuperFoundNews {
    private String id;
    private DetailSystem detailSystem;
    private FoundNews foundNews;
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public DetailSystem getDetailSystem() {
        return detailSystem;
    }
 
    public void setDetailSystem(DetailSystem detailSystem) {
        this.detailSystem = detailSystem;
    }
 
    public FoundNews getFoundNews() {
        return foundNews;
    }
 
    public void setFoundNews(FoundNews foundNews) {
        this.foundNews = foundNews;
    }
 
}