NoticePagination.java 770 B

12345678910111213141516171819202122232425262728
  1. package jnpf.message.model;
  2. import jnpf.base.Pagination;
  3. import io.swagger.v3.oas.annotations.media.Schema;
  4. import lombok.Data;
  5. import java.util.List;
  6. /**
  7. * 分页模型
  8. */
  9. @Data
  10. public class NoticePagination extends Pagination {
  11. @Schema(description = "类型")
  12. private List<String> type;
  13. @Schema(description = "状态")
  14. private List<Integer> enabledMark;
  15. @Schema(description = "创建人")
  16. private List<String> creatorUser;
  17. @Schema(description = "发布人")
  18. private List<String> releaseUser;
  19. @Schema(description = "发布时间")
  20. private List<Long> releaseTime;
  21. @Schema(description = "创建时间")
  22. private List<Long> creatorTime;
  23. @Schema(description = "过期时间")
  24. private List<Long> expirationTime;
  25. }