ResponseCustomMenu.java 754 B

123456789101112131415161718192021222324252627282930313233
  1. package com.fdkk.sxz.vo.response;
  2. import com.alibaba.fastjson.JSONArray;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import lombok.Data;
  5. @Data
  6. public class ResponseCustomMenu {
  7. private Long id;
  8. @ApiModelProperty(value = "目录名称,如:产品库,组件库,组合库", name = "name")
  9. private String name;
  10. /**
  11. * 菜单类型:product、component、material
  12. */
  13. @ApiModelProperty(value = "菜单类型如:product、component、material", name = "type")
  14. private String type;
  15. /**
  16. * 二级菜单
  17. */
  18. @ApiModelProperty(value = "二级菜单", name = "Children")
  19. private JSONArray children;
  20. @ApiModelProperty(value = "1:显示 0:不显示")
  21. private String isShow;
  22. }