SendMessageConfigForm.java 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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 java.util.List;
  6. import java.math.BigDecimal;
  7. import com.fasterxml.jackson.annotation.JsonProperty;
  8. import com.alibaba.fastjson.annotation.JSONField;
  9. /**
  10. *
  11. *
  12. * @版本: V3.2.0
  13. * @版权: 引迈信息技术有限公司(https://www.jnpfsoft.com)
  14. * @作者: JNPF开发平台组
  15. * @日期: 2022-08-19
  16. */
  17. @Data
  18. public class SendMessageConfigForm {
  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("sortCode")
  41. private Integer sortCode;
  42. /** 状态 **/
  43. @Schema(description = "状态")
  44. @JsonProperty("enabledMark")
  45. private String enabledMark;
  46. /** 说明 **/
  47. @Schema(description = "说明")
  48. @JsonProperty("description")
  49. private String description;
  50. /** 子表数据 **/
  51. @Schema(description = "子表数据")
  52. @JsonProperty("sendConfigTemplateList")
  53. private List<SendConfigTemplateEntity> sendConfigTemplateList;
  54. }