-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from BingChunMoLi/develop
feat(3.7.0): 新增邮件通知,更多的天气查询,查询地址
- Loading branch information
Showing
39 changed files
with
15,885 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,4 +10,7 @@ | |
7. 随机一言或制定 | ||
8. QQ头像获取(支持多种方式) | ||
9. QQ空间头像获取(支持多种方式) | ||
10. 天气查询 | ||
10. 天气查询 | ||
11. Hosts订阅 | ||
12. 随机图 | ||
13. 迅雷链接转换 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package com.bingchunmoli.api.bean; | ||
|
||
import lombok.Builder; | ||
import lombok.Data; | ||
|
||
/** | ||
* @author MoLi | ||
*/ | ||
@Data | ||
@Builder | ||
public class MailMessage { | ||
/** | ||
* 来自 | ||
*/ | ||
private String from; | ||
/** | ||
* 发送至 | ||
*/ | ||
private String to; | ||
/** | ||
* 标题 | ||
*/ | ||
private String title; | ||
/** | ||
* 正文 | ||
*/ | ||
private String body; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
src/main/java/com/bingchunmoli/api/even/MailMessageEven.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.bingchunmoli.api.even; | ||
|
||
import com.bingchunmoli.api.bean.MailMessage; | ||
import org.springframework.context.ApplicationEvent; | ||
|
||
/** | ||
* @author MoLi | ||
*/ | ||
public class MailMessageEven extends ApplicationEvent { | ||
public MailMessageEven(MailMessage mailMessage) { | ||
super(mailMessage); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.