ButtonVO.java 755 B

1234567891011121314151617181920212223242526272829
  1. package jnpf.base.model.button;
  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 ButtonVO {
  13. @Schema(description = "按钮主键")
  14. private String id;
  15. @Schema(description = "按钮上级")
  16. private String parentId;
  17. @Schema(description = "按钮名称")
  18. private String fullName;
  19. @Schema(description = "按钮编码")
  20. private String enCode;
  21. @Schema(description = "按钮图标")
  22. private String icon;
  23. @Schema(description = "请求地址")
  24. private String urlAddress;
  25. @Schema(description = "功能主键")
  26. private String moduleId;
  27. }