package jnpf.message.entity; import jnpf.base.entity.SuperExtendEntity; import com.alibaba.fastjson.annotation.JSONField; import com.baomidou.mybatisplus.annotation.*; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; import java.util.Date; import com.fasterxml.jackson.annotation.JsonProperty; /** * * 消息模板表 * @版本: V3.2.0 * @版权: 引迈信息技术有限公司(https://www.jnpfsoft.com) * @作者: JNPF开发平台组 * @日期: 2022-08-18 */ @Data @TableName("base_msg_template") public class MessageTemplateConfigEntity extends SuperExtendEntity.SuperExtendDEEntity { @TableField("f_full_name") private String fullName; @TableField("f_en_code") private String enCode; @TableField("f_template_type") private String templateType; @TableField("f_message_source") private String messageSource; @TableField("f_message_type") private String messageType; @TableField("f_title") private String title; @TableField("f_content") private String content; @TableField("f_template_code") private String templateCode; @TableField("f_wx_skip") private String wxSkip; @TableField("f_xcx_app_id") private String xcxAppId; }