MessageTemplateConfigPagination.java 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. package jnpf.message.model.messagetemplateconfig;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. import jnpf.base.Pagination;
  5. /**
  6. * @版本: V3.2.0
  7. * @版权: 引迈信息技术有限公司(https://www.jnpfsoft.com)
  8. * @作者: JNPF开发平台组
  9. * @日期: 2022-08-18
  10. */
  11. @Data
  12. public class MessageTemplateConfigPagination extends Pagination {
  13. @Schema(description = "selectKey")
  14. private String selectKey;
  15. @Schema(description = "json")
  16. private String json;
  17. @Schema(description = "数据类型")
  18. private String dataType;
  19. @Schema(description = "特殊查询json")
  20. private String superQueryJson;
  21. /**
  22. * 模板类型
  23. */
  24. @Schema(description = "模板类型")
  25. private String templateType;
  26. /**
  27. * 消息类型
  28. */
  29. @Schema(description = "消息类型")
  30. private String messageType;
  31. /**
  32. * 关键词
  33. */
  34. @Schema(description = "关键词")
  35. private String keyword;
  36. /**
  37. * 状态
  38. */
  39. @Schema(description = "状态")
  40. private String enabledMark;
  41. /**
  42. * 消息来源
  43. */
  44. @Schema(description = "消息来源")
  45. private String messageSource;
  46. /**
  47. * 菜单id
  48. */
  49. @Schema(description = "菜单id")
  50. private String menuId;
  51. }