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
package com.ishop.model.vo;
 
import java.io.Serializable;
import java.util.HashMap;
import java.util.List;
 
/**
 * 页面设计底部导航响应对象。
 * @author 时克英
 * @date 2023-06-23
 */
public class LayoutBottomNavigationVo implements Serializable {
 
    public List<HashMap<String, Object>> getBottomNavigationList() {
        return bottomNavigationList;
    }
 
    public void setBottomNavigationList(List<HashMap<String, Object>> bottomNavigationList) {
        this.bottomNavigationList = bottomNavigationList;
    }
 
    public String getIsCustom() {
        return isCustom;
    }
 
    public void setIsCustom(String isCustom) {
        this.isCustom = isCustom;
    }
 
    //    @ApiModelProperty(value = "底部导航")
    private List<HashMap<String, Object>> bottomNavigationList;
 
//    @ApiModelProperty(value = "是否自定义")
    private String isCustom;
}