package com.yeshi.buwan.domain;
|
|
import com.google.gson.annotations.Expose;
|
|
public class SuperHotSearch {
|
|
@Expose
|
private String id;
|
@Expose
|
private String createtime;
|
@Expose
|
private DetailSystem detailSystem;
|
@Expose
|
private HotSearch hotSearch;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(String createtime) {
|
this.createtime = createtime;
|
}
|
|
public DetailSystem getDetailSystem() {
|
return detailSystem;
|
}
|
|
public void setDetailSystem(DetailSystem detailSystem) {
|
this.detailSystem = detailSystem;
|
}
|
|
public HotSearch getHotSearch() {
|
return hotSearch;
|
}
|
|
public void setHotSearch(HotSearch hotSearch) {
|
this.hotSearch = hotSearch;
|
}
|
|
}
|