-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* feat: add EpisodeGetRecordsBySubjectId #730 * build: gen new api-client v20.1.0 * fix: console SubjectDetails.vue episode and resource get by records.
- Loading branch information
Showing
19 changed files
with
294 additions
and
68 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 |
---|---|---|
|
@@ -4,6 +4,10 @@ | |
|
||
# 0.20.2 | ||
|
||
## 新特性 | ||
|
||
- 添加接口 EpisodeGetRecordsBySubjectId #730 | ||
|
||
## 问题修复 | ||
|
||
- ObjectMapper的默认日期转化问题 #729 | ||
|
12 changes: 12 additions & 0 deletions
12
api/src/main/java/run/ikaros/api/core/subject/EpisodeRecord.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,12 @@ | ||
package run.ikaros.api.core.subject; | ||
|
||
import java.util.List; | ||
|
||
/** | ||
* 剧集相关数据的组合,使用复杂的数据,会增加单个接口的耗时,但对整个条目来说,能有效降低并发请求次数. | ||
* | ||
* @param episode 剧集 | ||
* @param resources 剧集附件资源集合 | ||
*/ | ||
public record EpisodeRecord(Episode episode, List<EpisodeResource> resources) { | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
/** | ||
* Ikaros Open API Documentation | ||
* Documentation for Ikaros Open API | ||
* | ||
* The version of the OpenAPI document: 1.0.0 | ||
* | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
// May contain unused imports in some cases | ||
// @ts-ignore | ||
import { Episode } from "./episode"; | ||
// May contain unused imports in some cases | ||
// @ts-ignore | ||
import { EpisodeResource } from "./episode-resource"; | ||
|
||
/** | ||
* | ||
* @export | ||
* @interface EpisodeRecord | ||
*/ | ||
export interface EpisodeRecord { | ||
/** | ||
* | ||
* @type {Episode} | ||
* @memberof EpisodeRecord | ||
*/ | ||
episode?: Episode; | ||
/** | ||
* | ||
* @type {Array<EpisodeResource>} | ||
* @memberof EpisodeRecord | ||
*/ | ||
resources?: Array<EpisodeResource>; | ||
} |
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.