package com.newvideo.domain.news;
|
|
public class NewsTypeContent {
|
public NewsTypeContent() {
|
super();
|
|
}
|
|
public NewsTypeContent(String id) {
|
super();
|
this.id = id;
|
}
|
|
private String id;
|
private News content;
|
private NewsType type;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public News getContent() {
|
return content;
|
}
|
|
public void setContent(News content) {
|
this.content = content;
|
}
|
|
public NewsType getType() {
|
return type;
|
}
|
|
public void setType(NewsType type) {
|
this.type = type;
|
}
|
|
}
|