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
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;
}