package com.yeshi.buwan.domain;
|
|
import com.google.gson.annotations.Expose;
|
import com.yeshi.buwan.domain.system.DetailSystem;
|
|
public class SuperHotStar {
|
@Expose
|
private String id;
|
@Expose
|
private DetailSystem detailSystem;
|
@Expose
|
private HotStar hotStar;
|
@Expose
|
private String createtime;
|
|
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 HotStar getHotStar() {
|
return hotStar;
|
}
|
|
public void setHotStar(HotStar hotStar) {
|
this.hotStar = hotStar;
|
}
|
|
public String getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(String createtime) {
|
this.createtime = createtime;
|
}
|
|
}
|