pikapika/go/pikapi/controller/modles.go

32 lines
740 B
Go
Raw Normal View History

2021-09-29 23:57:09 +00:00
package controller
import "pgo/pikapi/database/comic_center"
type DisplayImageData struct {
FileSize int64 `json:"fileSize"`
Format string `json:"format"`
Width int32 `json:"width"`
Height int32 `json:"height"`
FinalPath string `json:"finalPath"`
}
type ComicDownloadPictureWithFinalPath struct {
comic_center.ComicDownloadPicture
FinalPath string `json:"finalPath"`
}
type JsonComicDownload struct {
comic_center.ComicDownload
EpList []JsonComicDownloadEp `json:"epList"`
}
type JsonComicDownloadEp struct {
comic_center.ComicDownloadEp
PictureList []JsonComicDownloadPicture `json:"pictureList"`
}
type JsonComicDownloadPicture struct {
comic_center.ComicDownloadPicture
SrcPath string `json:"srcPath"`
}