package com.yeshi.buwan.domain;
|
|
import com.yeshi.buwan.domain.system.DetailSystem;
|
|
public class SuperHotType {
|
private String id;
|
private HotVideoType hotType;
|
private DetailSystem detailSystem;
|
private String createtime;
|
|
public HotVideoType getHotType() {
|
return hotType;
|
}
|
|
public void setHotType(HotVideoType hotType) {
|
this.hotType = hotType;
|
}
|
|
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 String getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(String createtime) {
|
this.createtime = createtime;
|
}
|
|
}
|