MessageTemplateConfigEntity.java 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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-18
  16. */
  17. @Data
  18. @TableName("base_msg_template")
  19. public class MessageTemplateConfigEntity extends SuperExtendEntity.SuperExtendDEEntity<String> {
  20. @TableField("f_full_name")
  21. private String fullName;
  22. @TableField("f_en_code")
  23. private String enCode;
  24. @TableField("f_template_type")
  25. private String templateType;
  26. @TableField("f_message_source")
  27. private String messageSource;
  28. @TableField("f_message_type")
  29. private String messageType;
  30. @TableField("f_title")
  31. private String title;
  32. @TableField("f_content")
  33. private String content;
  34. @TableField("f_template_code")
  35. private String templateCode;
  36. @TableField("f_wx_skip")
  37. private String wxSkip;
  38. @TableField("f_xcx_app_id")
  39. private String xcxAppId;
  40. }