ModuleVO.java 710 B

123456789101112131415161718192021222324252627
  1. package jnpf.base.model.module;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. /**
  5. *
  6. * @author JNPF开发平台组
  7. * @version V3.1.0
  8. * @copyright 引迈信息技术有限公司
  9. * @date 2021/3/12 15:31
  10. */
  11. @Data
  12. public class ModuleVO {
  13. @Schema(description = "功能主键")
  14. private String id;
  15. @Schema(description = "功能上级")
  16. private String parentId;
  17. @Schema(description = "功能类别【1-类别、2-页面】")
  18. private Integer type;
  19. @Schema(description = "功能名称")
  20. private String fullName;
  21. @Schema(description = "功能编码")
  22. private String enCode;
  23. @Schema(description = "功能地址")
  24. private String urlAddress;
  25. }