DataValuesQuery.java 504 B

1234567891011121314151617181920212223
  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 DataValuesQuery {
  13. @Schema(description = "类型")
  14. private String type;
  15. @Schema(description = "菜单id集合")
  16. private String moduleIds;
  17. @Schema(description = "类型:organize,role")
  18. private String objectType;
  19. }