MessageTemplateSelector.java 837 B

123456789101112131415161718192021222324252627282930
  1. package jnpf.base.model.messagetemplate;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. import java.io.Serializable;
  5. /**
  6. * @author JNPF开发平台组
  7. * @version V3.1.0
  8. * @copyright 引迈信息技术有限公司(https://www.jnpfsoft.com)
  9. * @date 2021-12-11
  10. */
  11. @Data
  12. public class MessageTemplateSelector implements Serializable {
  13. @Schema(description = "主键")
  14. private String id;
  15. @Schema(description = "模板名称")
  16. private String fullName;
  17. @Schema(description = "消息类型")
  18. private String category;
  19. @Schema(description = "标题")
  20. private String title;
  21. @Schema(description = "内容")
  22. private String content;
  23. @Schema(description = "模板参数JSON")
  24. private String templateJson;
  25. @Schema(description = "编码")
  26. private String enCode;
  27. }