Initial commit

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-09-15 13:57:10 +08:00
co-authored by Claude Opus 5
commit 8679200f41
1897 changed files with 257900 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
package laosiji
type NovelSearchListReq struct {
Page string `json:"page"` //
Page_size string `json:"page_size"` //
Cat_id string `json:"cat_id"` // 分类 audio 18R normal
Start_time string `json:"start_time"` // 更新开始时间
End_time string `json:"end_time"` // 更新结束时间
Is_end string `json:"is_end"` // 是否完结 y | n
Need_total_info string `json:"need_total_info"` // 分页信息 默认y
Keywords string `json:"keywords"` // 关键字
}
type NovelSearchListResp struct {
Data []NovelSearchInfo `json:"data"` //
Total string `json:"total"` // 总数
Current_page string `json:"current_page"` // 当前页
Page_size string `json:"page_size"` // 当前页数
Last_page string `json:"last_page"` //
}
type NovelDetailReq struct {
Id string `json:"id"` // id
}
type NovelDetailResp struct {
NovelSearchInfo
}
type NovelAddListReq struct {
Ids []string `json:"ids"`
}