SendMessageConfigPagination.java 1.2 KB

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