package com.newvideo.domain.news;
|
|
import com.google.gson.annotations.Expose;
|
|
public class NewsType {
|
public NewsType() {
|
super();
|
|
}
|
|
public NewsType(String id) {
|
super();
|
this.id = id;
|
}
|
|
@Expose
|
private String id;
|
@Expose
|
private String name;
|
private String createtime;
|
private NewsType parent;
|
|
public NewsType getParent() {
|
return parent;
|
}
|
|
public void setParent(NewsType parent) {
|
this.parent = parent;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(String createtime) {
|
this.createtime = createtime;
|
}
|
}
|