package com.yeshi.buwan.domain;
|
|
import com.google.gson.annotations.Expose;
|
|
public class SuperHomeNotice {
|
@Expose
|
private String id;
|
@Expose
|
private HomeNotice homeNotice;
|
@Expose
|
private DetailSystem detailSystem;
|
private String createtime;
|
|
public DetailSystem getDetailSystem() {
|
return detailSystem;
|
}
|
|
public void setDetailSystem(DetailSystem detailSystem) {
|
this.detailSystem = detailSystem;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public HomeNotice getHomeNotice() {
|
return homeNotice;
|
}
|
|
public void setHomeNotice(HomeNotice homeNotice) {
|
this.homeNotice = homeNotice;
|
}
|
|
public String getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(String createtime) {
|
this.createtime = createtime;
|
}
|
|
}
|