SendMessageConfigEntity.java 972 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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")
  19. public class SendMessageConfigEntity 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_MESSAGETYPE")
  25. //
  26. // private String messageType;
  27. @TableField("f_template_type")
  28. private String templateType;
  29. @TableField("f_message_source")
  30. private String messageSource;
  31. }