shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
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;
}