刘光辉
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
package jnpf.message.model.mail;
 
import lombok.Data;
 
@Data
public class MailAccount {
    // pop3服务
    private String pop3Host;
    // pop3端口
    private int pop3Port;
    // smtp服务
    private String smtpHost;
    // smtp端口
    private int smtpPort;
    // 账户
    private String account;
    // 账户名称
    private String accountName;
    // 密码
    private String password;
    // SSL
    private Boolean ssl;
    // 路径
    private String destDir;
}