| 1 | package cn.hellohao.pojo; |
| 2 | |
| 3 | public class EmailConfig { |
| 4 | private Integer id ; |
| 5 | private String emails; |
| 6 | private String emailkey; |
| 7 | private String emailurl; |
| 8 | private String port; |
| 9 | private String emailname; |
| 10 | private Integer using ; |
| 11 | |
| 12 | public EmailConfig() { |
| 13 | } |
| 14 | |
| 15 | public EmailConfig(Integer id, String emails, String emailkey, String emailurl, String port, String emailname, Integer using) { |
| 16 | this.id = id; |
| 17 | this.emails = emails; |
| 18 | this.emailkey = emailkey; |
| 19 | this.emailurl = emailurl; |
| 20 | this.port = port; |
| 21 | this.emailname = emailname; |
| 22 | this.using = using; |
| 23 | } |
| 24 | |
| 25 | public Integer getId() { |
| 26 | return id; |
| 27 | } |
| 28 | |
| 29 | public void setId(Integer id) { |
| 30 | this.id = id; |
| 31 | } |
| 32 | |
| 33 | public String getEmails() { |
| 34 | return emails; |
| 35 | } |
| 36 | |
| 37 | public void setEmails(String emails) { |
| 38 | this.emails = emails; |
| 39 | } |
| 40 | |
| 41 | public String getEmailkey() { |
| 42 | return emailkey; |
| 43 | } |
| 44 | |
| 45 | public void setEmailkey(String emailkey) { |
| 46 | this.emailkey = emailkey; |
| 47 | } |
| 48 | |
| 49 | public String getEmailurl() { |
| 50 | return emailurl; |
| 51 | } |
| 52 | |
| 53 | public void setEmailurl(String emailurl) { |
| 54 | this.emailurl = emailurl; |
| 55 | } |
| 56 | |
| 57 | public String getPort() { |
| 58 | return port; |
| 59 | } |
| 60 |
nothing calls this directly
no outgoing calls
no test coverage detected