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;
|
}
|
|
}
|