ResourceVO.java 707 B

123456789101112131415161718192021222324252627
  1. package jnpf.permission.model.authorize;
  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 ResourceVO {
  13. @Schema(description = "资源主键")
  14. private String id;
  15. @Schema(description = "资源名称")
  16. private String fullName;
  17. @Schema(description = "资源编码")
  18. private String enCode;
  19. @Schema(description = "条件规则")
  20. private String conditionJson;
  21. @Schema(description = "规则描述")
  22. private String conditionText;
  23. @Schema(description = "功能主键")
  24. private String moduleId;
  25. }