PaginationDataInterface.java 647 B

123456789101112131415161718192021222324252627
  1. package jnpf.base.model.datainterface;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import jnpf.base.Pagination;
  4. import lombok.Data;
  5. @Data
  6. public class PaginationDataInterface extends Pagination {
  7. @Schema(description = "分类id")
  8. private String category;
  9. /**
  10. * 请求方式
  11. */
  12. @Schema(description = "是否分页 0-不分页 1-分页")
  13. private Integer hasPage;
  14. @Schema(description = "有效标志")
  15. private Integer enabledMark;
  16. @Schema(description = "类型")
  17. private String type;
  18. /**
  19. * 请求方式
  20. */
  21. @Schema(description = "请求方式")
  22. private String dataType;
  23. }