📄 email.java
字号:
package com.ntsky.bbs.xml.bean;
import java.util.HashMap;
import java.util.Map;
/**
* 邮件信息
* @author ntsky
*
*/
public class Email {
private String smtpHost = null;
private String username = null;
private String password = null;
private String systemMail = null;
private Map bodys = new HashMap();
public Map getBodys() {
return bodys;
}
public void setBodys(Map bodys) {
this.bodys = bodys;
}
public String getSystemMail() {
return systemMail;
}
public void setSystemMail(String systemMail) {
this.systemMail = systemMail;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getSmtpHost() {
return smtpHost;
}
public void setSmtpHost(String smtpHost) {
this.smtpHost = smtpHost;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -