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;
|
}
|