SendMessageConfigInfoVO.java 2.5 KB

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