SendConfigTemplateModel.java 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. package jnpf.message.model.sendmessageconfig;
  2. import lombok.Data;
  3. import java.util.List;
  4. import java.util.Date;
  5. import java.math.BigDecimal;
  6. import java.math.BigInteger;
  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 SendConfigTemplateModel {
  19. private String id;
  20. /** 消息发送配置id **/
  21. @JsonProperty("sendConfigId")
  22. private String sendConfigId;
  23. /** 消息类型 **/
  24. @JsonProperty("messageType")
  25. private String messageType;
  26. /** 消息模板id **/
  27. @JsonProperty("templateId")
  28. private String templateId;
  29. /** 账号配置id **/
  30. @JsonProperty("accountConfigId")
  31. private String accountConfigId;
  32. /** 接收人 **/
  33. private List<String> toUser;
  34. /** 模板参数 **/
  35. private Object paramJson;
  36. /** 消息模板名称 **/
  37. private String msgTemplateName;
  38. }