generated from halo-dev/plugin-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
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 #4 from carolcoral/v1.6.0
V1.6.0
- Loading branch information
Showing
14 changed files
with
337 additions
and
147 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 |
---|---|---|
@@ -1 +1 @@ | ||
version=1.5.2 | ||
version=1.6.0 |
2 changes: 1 addition & 1 deletion
2
...u/afdian/service/CustomHeadProcessor.java → ...afdian/component/CustomHeadProcessor.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
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
17 changes: 17 additions & 0 deletions
17
src/main/java/site/xindu/afdian/service/AfdianConfigService.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,17 @@ | ||
package site.xindu.afdian.service; | ||
|
||
import com.fasterxml.jackson.databind.JsonNode; | ||
import reactor.core.publisher.Mono; | ||
|
||
/** | ||
* 配置信息服务 | ||
*/ | ||
public interface AfdianConfigService { | ||
|
||
/** | ||
* 获取插件配置信息 | ||
* @return 插件配置信息(敏感信息已处理) | ||
*/ | ||
Mono<JsonNode> getConfig(); | ||
|
||
} |
2 changes: 1 addition & 1 deletion
2
...ite/xindu/afdian/finder/AfdianFinder.java → ...te/xindu/afdian/service/AfdianFinder.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
51 changes: 51 additions & 0 deletions
51
src/main/java/site/xindu/afdian/service/AfdianService.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,51 @@ | ||
package site.xindu.afdian.service; | ||
|
||
import com.fasterxml.jackson.databind.JsonNode; | ||
import reactor.core.publisher.Mono; | ||
|
||
/** | ||
* 爱发电APP相关服务 | ||
*/ | ||
public interface AfdianService { | ||
|
||
/** | ||
* 获取token | ||
* @return token对象 | ||
*/ | ||
Mono<JsonNode> getAuthToken(); | ||
|
||
/** | ||
* 分页获取爱发电赞助用户 | ||
* @param pageNumber 页码 | ||
* @return 赞助用户集合 | ||
*/ | ||
Mono<JsonNode> getSponsorList(int pageNumber); | ||
|
||
/** | ||
* 获取全部爱发电赞助用户 | ||
* @return 全部赞助用户 | ||
*/ | ||
Mono<JsonNode> listAllSponsor(); | ||
|
||
/** | ||
* 获取全部赞助方案、商品、VIP服务 | ||
* @return 全部赞助方案、商品、VIP服务 | ||
*/ | ||
Mono<JsonNode> listAllSponsorship(); | ||
|
||
|
||
/** | ||
* 获取全部赞助方案、商品列表 | ||
* @return 全部赞助方案、商品列表 | ||
*/ | ||
Mono<JsonNode> listPlansAndSales(); | ||
|
||
/** | ||
* 获取全部作品集 | ||
* @return 全部作品集 | ||
*/ | ||
Mono<JsonNode> listAlbum(); | ||
|
||
|
||
|
||
} |
90 changes: 0 additions & 90 deletions
90
src/main/java/site/xindu/afdian/service/SponsorService.java
This file was deleted.
Oops, something went wrong.
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.