SendConfigTemplateEntity.java 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. package jnpf.message.entity;
  2. import jnpf.base.entity.SuperExtendEntity;
  3. import com.alibaba.fastjson.annotation.JSONField;
  4. import com.baomidou.mybatisplus.annotation.*;
  5. import io.swagger.v3.oas.annotations.media.Schema;
  6. import lombok.Data;
  7. import java.util.Date;
  8. import com.fasterxml.jackson.annotation.JsonProperty;
  9. /**
  10. * 发送配置模板表
  11. *
  12. * @版本: V3.2.0
  13. * @版权: 引迈信息技术有限公司(https://www.jnpfsoft.com)
  14. * @作者: JNPF开发平台组
  15. * @日期: 2022-08-19
  16. */
  17. @Data
  18. @TableName("base_msg_send_template")
  19. public class SendConfigTemplateEntity extends SuperExtendEntity.SuperExtendDEEntity<String> {
  20. /** 发送配置id **/
  21. @TableField("f_send_config_id")
  22. private String sendConfigId;
  23. /** 消息类型 **/
  24. @TableField("f_message_type")
  25. private String messageType;
  26. /** 消息模板id **/
  27. @TableField("f_template_id")
  28. private String templateId;
  29. /** 账号配置id **/
  30. @TableField("f_account_config_id")
  31. private String accountConfigId;
  32. /** 消息模板编号 **/
  33. @TableField(exist = false)
  34. private String templateCode;
  35. /** 消息模板名称 **/
  36. @TableField(exist = false)
  37. private String templateName;
  38. /** 账号编码 **/
  39. @TableField(exist = false)
  40. private String accountCode;
  41. /** 账号名称 **/
  42. @TableField(exist = false)
  43. private String accountName;
  44. }