VisualdevTreeVO.java 932 B

1234567891011121314151617181920212223242526272829303132333435
  1. package jnpf.base.model;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. import java.util.List;
  5. /**
  6. *
  7. * @version V3.1.0
  8. * @copyright 引迈信息技术有限公司(https://www.jnpfsoft.com)
  9. * @author JNPF开发平台组
  10. * @date 2021/3/16
  11. */
  12. @Data
  13. @Schema(description="功能树形VO" )
  14. public class VisualdevTreeVO {
  15. @Schema(description = "主键" )
  16. private String id;
  17. @Schema(description = "名称" )
  18. private String fullName;
  19. @Schema(description = "页面地址" )
  20. private String webAddress;
  21. @Schema(description = "页面地址" )
  22. private String appAddress;
  23. @Schema(description = "是否有子集" )
  24. private Boolean hasChildren;
  25. @Schema(description = "排序" )
  26. private Long sortCode;
  27. @Schema(description = "表单类型" )
  28. private Integer webType;
  29. @Schema(description = "子集对象" )
  30. private List<VisualdevTreeVO> children;
  31. }