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> getBottomNavigationList() { return bottomNavigationList; } public void setBottomNavigationList(List> bottomNavigationList) { this.bottomNavigationList = bottomNavigationList; } public String getIsCustom() { return isCustom; } public void setIsCustom(String isCustom) { this.isCustom = isCustom; } // @ApiModelProperty(value = "底部导航") private List> bottomNavigationList; // @ApiModelProperty(value = "是否自定义") private String isCustom; }