Add album seriesAll api

Signed-off-by: Yuan Si <do4suki@gmail.com>
This commit is contained in:
2023-03-30 06:08:53 +08:00
parent 7da92ede3e
commit f8860f65ce
4 changed files with 180 additions and 3 deletions
+4 -3
View File
@@ -1,7 +1,7 @@
package model
// module: album, action: albumAll
type AlbumAll struct {
type AlbumUnitList struct {
UnitID int `json:"unit_id"`
RankMaxFlag bool `json:"rank_max_flag"`
LoveMaxFlag bool `json:"love_max_flag"`
@@ -13,6 +13,7 @@ type AlbumAll struct {
SignFlag bool `json:"sign_flag"`
}
type AlbumAllResult struct {
AlbumAll []AlbumAll
type AlbumResponseData struct {
SeriesID int `json:"series_id"`
UnitList []AlbumUnitList `json:"unit_list"`
}