package com.weikou.beibeivideo.entity;
|
|
import com.google.gson.annotations.Expose;
|
|
public class Special {
|
@Expose
|
private String id;
|
@Expose
|
private String name;
|
@Expose
|
private String picture;
|
@Expose
|
private String introduction;
|
private String createtime;
|
private int orderby;
|
private boolean show;
|
private boolean showonmain;// 是否在首页显示
|
@Expose
|
private CommonAd commonAd;// 常规广告
|
|
public CommonAd getCommonAd() {
|
return commonAd;
|
}
|
|
public void setCommonAd(CommonAd commonAd) {
|
this.commonAd = commonAd;
|
}
|
|
public boolean isShowonmain() {
|
return showonmain;
|
}
|
|
public void setShowonmain(boolean showonmain) {
|
this.showonmain = showonmain;
|
}
|
|
public boolean isShow() {
|
return show;
|
}
|
|
public void setShow(boolean show) {
|
this.show = show;
|
}
|
|
public Special() {
|
}
|
|
public Special(String id) {
|
this.id = id;
|
}
|
|
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 getPicture() {
|
return picture;
|
}
|
|
public void setPicture(String picture) {
|
this.picture = picture;
|
}
|
|
public String getIntroduction() {
|
return introduction;
|
}
|
|
public void setIntroduction(String introduction) {
|
this.introduction = introduction;
|
}
|
|
public String getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(String createtime) {
|
this.createtime = createtime;
|
}
|
|
public int getOrderby() {
|
return orderby;
|
}
|
|
public void setOrderby(int orderby) {
|
this.orderby = orderby;
|
}
|
}
|