1 changed files with 61 additions and 0 deletions
@ -0,0 +1,61 @@ |
|||||
|
package bc.core.bcmail.bean; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* email bean |
||||
|
*/ |
||||
|
public class Mail implements Serializable { |
||||
|
/** |
||||
|
* 接收人 |
||||
|
*/ |
||||
|
private String sendTo; |
||||
|
|
||||
|
/** |
||||
|
* 邮件主题 |
||||
|
*/ |
||||
|
private String subject; |
||||
|
|
||||
|
/** |
||||
|
* 邮件内容 |
||||
|
*/ |
||||
|
private String text; |
||||
|
|
||||
|
/** |
||||
|
* 附件路径 |
||||
|
*/ |
||||
|
private String filePath; |
||||
|
|
||||
|
public String getSendTo() { |
||||
|
return sendTo; |
||||
|
} |
||||
|
|
||||
|
public void setSendTo(String sendTo) { |
||||
|
this.sendTo = sendTo; |
||||
|
} |
||||
|
|
||||
|
public String getSubject() { |
||||
|
return subject; |
||||
|
} |
||||
|
|
||||
|
public void setSubject(String subject) { |
||||
|
this.subject = subject; |
||||
|
} |
||||
|
|
||||
|
public String getText() { |
||||
|
return text; |
||||
|
} |
||||
|
|
||||
|
public void setText(String text) { |
||||
|
this.text = text; |
||||
|
} |
||||
|
|
||||
|
public String getFilePath() { |
||||
|
return filePath; |
||||
|
} |
||||
|
|
||||
|
public void setFilePath(String filePath) { |
||||
|
this.filePath = filePath; |
||||
|
} |
||||
|
|
||||
|
} |
||||
Loading…
Reference in new issue