Created on 17/7/27 21:36 星期四. @author sd
| 8 | * @author sd |
| 9 | */ |
| 10 | public class MailSend implements java.io.Serializable { |
| 11 | |
| 12 | /** |
| 13 | * 接受方邮箱地址列表 |
| 14 | */ |
| 15 | private List<String> toList; |
| 16 | /** |
| 17 | * 标题 |
| 18 | */ |
| 19 | private String subject; |
| 20 | /** |
| 21 | * 内容 |
| 22 | */ |
| 23 | private String content; |
| 24 | /** |
| 25 | * 附件文件列表 |
| 26 | */ |
| 27 | private List<String> attachFiles; |
| 28 | |
| 29 | |
| 30 | public List<String> getToList() { |
| 31 | return toList; |
| 32 | } |
| 33 | |
| 34 | public MailSend setToList(List<String> toList) { |
| 35 | this.toList = toList; |
| 36 | return this; |
| 37 | } |
| 38 | |
| 39 | public String getSubject() { |
| 40 | return subject; |
| 41 | } |
| 42 | |
| 43 | public MailSend setSubject(String subject) { |
| 44 | this.subject = subject; |
| 45 | return this; |
| 46 | } |
| 47 | |
| 48 | public String getContent() { |
| 49 | return content; |
| 50 | } |
| 51 | |
| 52 | public MailSend setContent(String content) { |
| 53 | this.content = content; |
| 54 | return this; |
| 55 | } |
| 56 | |
| 57 | public List<String> getAttachFiles() { |
| 58 | return attachFiles; |
| 59 | } |
| 60 | |
| 61 | public MailSend setAttachFiles(List<String> attachFiles) { |
| 62 | this.attachFiles = attachFiles; |
| 63 | return this; |
| 64 | } |
| 65 | } |
nothing calls this directly
no outgoing calls
no test coverage detected