刘光辉
12 小时以前 34981c30a78e8bbd7791131059a9210f9928b62c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package jnpf.message.entity;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import jnpf.base.entity.SuperExtendEntity;
import lombok.Data;
 
/**
 * 消息模板表
 *
 * @版本: V3.2.0
 * @版权: 引迈信息技术有限公司(https://www.jnpfsoft.com)
 * @作者: JNPF开发平台组
 * @日期: 2022-08-18
 */
@Data
@TableName("base_msg_template")
public class MessageTemplateConfigEntity extends SuperExtendEntity.SuperExtendDEEntity<String> {
 
    @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_menu_url")
    private String menuUrl;
 
    @TableField("f_template_code")
    private String templateCode;
 
    @TableField("f_wx_skip")
    private String wxSkip;
 
    @TableField("f_xcx_app_id")
    private String xcxAppId;
 
}