📄 userconfig.java
字号:
package email;
import java.io.Serializable;
public class UserConfig implements Serializable{
/**
*
*/
//private static final long serialVersionUID = -3990526545146335414L;
private String user_count;
private String user_pwd ;
private String pop_host ;
private String smtp_host ;
private String from ;
private CommonFile commonFile = null;
public CommonFile getCommonFile() {
return commonFile;
}
public void setCommonFile(CommonFile commonFile) {
this.commonFile = commonFile;
}
public String getFrom() {
return from;
}
public void setFrom(String from) {
this.from = from;
}
public String getPop_host() {
return pop_host;
}
public void setPop_host(String pop_host) {
this.pop_host = pop_host;
}
public String getSmtp_host() {
return smtp_host;
}
public void setSmtp_host(String smtp_host) {
this.smtp_host = smtp_host;
}
public String getUser_count() {
return user_count;
}
public void setUser_count(String user_count) {
this.user_count = user_count;
}
public String getUser_pwd() {
return user_pwd;
}
public void setUser_pwd(String user_pwd) {
this.user_pwd = user_pwd;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -