package com.ishop.model.vo;
|
|
import com.ishop.model.po.EbArticle;
|
|
import java.util.HashMap;
|
import java.util.List;
|
|
public class IndexInfoVo {
|
|
public List<HashMap<String, Object>> getBanner() {
|
return banner;
|
}
|
|
public void setBanner(List<HashMap<String, Object>> banner) {
|
this.banner = banner;
|
}
|
|
public List<HashMap<String, Object>> getMenus() {
|
return menus;
|
}
|
|
public void setMenus(List<HashMap<String, Object>> menus) {
|
this.menus = menus;
|
}
|
|
public List<EbArticle> getHeadline() {
|
return headline;
|
}
|
|
public void setHeadline(List<EbArticle> headline) {
|
this.headline = headline;
|
}
|
|
public String getLogoUrl() {
|
return logoUrl;
|
}
|
|
public void setLogoUrl(String logoUrl) {
|
this.logoUrl = logoUrl;
|
}
|
|
public String getConsumerHotline() {
|
return consumerHotline;
|
}
|
|
public void setConsumerHotline(String consumerHotline) {
|
this.consumerHotline = consumerHotline;
|
}
|
|
public String getConsumerH5Url() {
|
return consumerH5Url;
|
}
|
|
public void setConsumerH5Url(String consumerH5Url) {
|
this.consumerH5Url = consumerH5Url;
|
}
|
|
public String getConsumerType() {
|
return consumerType;
|
}
|
|
public void setConsumerType(String consumerType) {
|
this.consumerType = consumerType;
|
}
|
|
public String getShopStreetSwitch() {
|
return shopStreetSwitch;
|
}
|
|
public void setShopStreetSwitch(String shopStreetSwitch) {
|
this.shopStreetSwitch = shopStreetSwitch;
|
}
|
|
// @ApiModelProperty(value = "首页banner滚动图")
|
private List<HashMap<String, Object>> banner;
|
|
// @ApiModelProperty(value = "首页金刚区")
|
private List<HashMap<String, Object>> menus;
|
|
// @ApiModelProperty(value = "新闻简报消息滚动")
|
private List<EbArticle> headline;
|
|
// @ApiModelProperty(value = "移动端顶部logo")
|
private String logoUrl;
|
|
// @ApiModelProperty(value = "客服电话")
|
private String consumerHotline;
|
|
// @ApiModelProperty(value = "客服H5链接")
|
private String consumerH5Url;
|
|
// @ApiModelProperty(value = "客服类型:h5,hotline,message,email")
|
private String consumerType;
|
// @ApiModelProperty(value = "店铺街开关")
|
private String shopStreetSwitch;
|
}
|