ny
昨天 b6f169fe43a2b13f351aefc152374fc7f0bc8cb7
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
package jnpf.entity;
 
import jnpf.base.entity.SuperExtendEntity;
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.util.Date;
 
/**
 * 邮件接收
 *
 * @author JNPF开发平台组
 * @version V3.1.0
 * @copyright 引迈信息技术有限公司(https://www.jnpfsoft.com)
 * @date 2019年9月26日 上午9:18
 */
@Data
@TableName("ext_email_receive")
public class EmailReceiveEntity extends SuperExtendEntity.SuperExtendDEEntity<String> {
 
    /**
     * 类型
     */
    @TableField("F_TYPE")
    private Integer type;
 
    /**
     * 邮箱账户
     */
    @TableField(value = "F_MACCOUNT",fill= FieldFill.INSERT)
    private String mAccount;
 
    /**
     * F_MID
     */
    @TableField("F_MID")
    private String mID;
 
    /**
     * 发件人
     */
    @TableField("F_SENDER")
    private String sender;
 
    /**
     * 发件人名称
     */
    @TableField("F_SENDER_NAME")
    private String senderName;
 
    /**
     * 主题
     */
    @TableField("F_SUBJECT")
    private String subject;
 
    /**
     * 正文
     */
    @TableField("F_BODY_TEXT")
    private String bodyText;
 
    /**
     * 附件
     */
    @TableField("F_ATTACHMENT")
    private String attachment;
 
    /**
     * 阅读
     */
    @TableField("F_READ")
    private Integer isRead;
 
    /**
     * F_Date
     */
    @TableField("F_DATE")
    private Date fdate;
 
    /**
     * 星标
     */
    @TableField("F_STARRED")
    private Integer starred;
 
}