temp
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
import { BookImageTextToVideoInfo } from "./bookImageTextToVideoInfo";
|
||||
|
||||
|
||||
export class BookImageTextToVideoIndex {
|
||||
|
||||
bookImageTextToVideoInfo: BookImageTextToVideoInfo;
|
||||
|
||||
constructor() {
|
||||
this.bookImageTextToVideoInfo = new BookImageTextToVideoInfo();
|
||||
}
|
||||
|
||||
//#region Info
|
||||
|
||||
/** 获取用于视频生成的小说信息列表 根据查询条件返回小说数据,如果指定了bookTaskId,则返回对应小说的单个任务数据 否则返回所有启用了视频生成功能的小说及其任务数据 */
|
||||
GetVideoBookInfoList = async (condition: BookVideo.BookVideoInfoListQuertCondition) => await this.bookImageTextToVideoInfo.GetVideoBookInfoList(condition)
|
||||
|
||||
|
||||
GetBookImageAndVideoProgress = async (bookId?: string, bookTaskId?: string) => await this.bookImageTextToVideoInfo.GetBookImageAndVideoProgress(bookId, bookTaskId);
|
||||
|
||||
//#endregion
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user