MessageTemplateConfigForm.java 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. package jnpf.message.model.messagetemplateconfig;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import io.swagger.v3.oas.annotations.media.Schema;
  4. import jnpf.message.entity.SmsFieldEntity;
  5. import jnpf.message.entity.TemplateParamEntity;
  6. import lombok.Data;
  7. import java.util.List;
  8. import com.fasterxml.jackson.annotation.JsonProperty;
  9. /**
  10. *
  11. *
  12. * @版本: V3.2.0
  13. * @版权: 引迈信息技术有限公司(https://www.jnpfsoft.com)
  14. * @作者: JNPF开发平台组
  15. * @日期: 2022-08-18
  16. */
  17. @Data
  18. public class MessageTemplateConfigForm {
  19. /** 主键 */
  20. @Schema(description = "主键")
  21. private String id;
  22. /** 名称 **/
  23. @Schema(description = "名称")
  24. @JsonProperty("fullName")
  25. private String fullName;
  26. /** 编码 **/
  27. @Schema(description = "编码")
  28. @JsonProperty("enCode")
  29. private String enCode;
  30. /** 模板类型 **/
  31. @Schema(description = "模板类型")
  32. @JsonProperty("templateType")
  33. private String templateType;
  34. /** 消息来源 **/
  35. @Schema(description = "消息来源")
  36. @JsonProperty("messageSource")
  37. private String messageSource;
  38. /** 消息类型 **/
  39. @Schema(description = "消息类型")
  40. @JsonProperty("messageType")
  41. private String messageType;
  42. /** 排序 **/
  43. @Schema(description = "排序")
  44. @JsonProperty("sortCode")
  45. private Integer sortCode;
  46. /** 状态 **/
  47. @Schema(description = "状态")
  48. @JsonProperty("enabledMark")
  49. private Integer enabledMark;
  50. /** 说明 **/
  51. @Schema(description = "说明")
  52. @JsonProperty("description")
  53. private String description;
  54. /** 消息标题 **/
  55. @Schema(description = "消息标题")
  56. @JsonProperty("title")
  57. private String title;
  58. /** 消息内容 **/
  59. @Schema(description = "消息内容")
  60. @JsonProperty("content")
  61. private String content;
  62. /** 模板编号 **/
  63. @Schema(description = "模板编号")
  64. @JsonProperty("templateCode")
  65. private String templateCode;
  66. /** 跳转方式 (1:小程序,2:页面)**/
  67. @Schema(description = "跳转方式")
  68. @JsonProperty("wxSkip")
  69. private String wxSkip;
  70. /** 关联小程序id **/
  71. @Schema(description = "关联小程序id")
  72. @JsonProperty("xcxAppId")
  73. private String xcxAppId;
  74. // /** 创建时间 **/
  75. // @JsonProperty("creatorTime")
  76. // private String creatorTime;
  77. //
  78. // /** 创建人员 **/
  79. // @JsonProperty("creatorUserId")
  80. // private String creatorUserId;
  81. //
  82. // /** 修改时间 **/
  83. // @JsonProperty("lastModifyTime")
  84. // private String lastModifyTime;
  85. //
  86. // /** 修改人员 **/
  87. // @JsonProperty("lastModifyUserId")
  88. // private String lastModifyUserId;
  89. /** 子表数据 **/
  90. @Schema(description = "子表数据")
  91. @JsonProperty("templateParamList")
  92. private List<TemplateParamEntity> templateParamList;
  93. /** 子表数据 **/
  94. @Schema(description = "子表数据")
  95. @JsonProperty("smsFieldList")
  96. private List<SmsFieldEntity> smsFieldList;
  97. }