package com.fdkk.sxz.vo.response; import com.alibaba.fastjson.JSONArray; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @Data public class ResponseCustomMenu { private Long id; @ApiModelProperty(value = "目录名称,如:产品库,组件库,组合库", name = "name") private String name; /** * 菜单类型:product、component、material */ @ApiModelProperty(value = "菜单类型如:product、component、material", name = "type") private String type; /** * 二级菜单 */ @ApiModelProperty(value = "二级菜单", name = "Children") private JSONArray children; @ApiModelProperty(value = "1:显示 0:不显示") private String isShow; }