🚧 optimized the api for obtaining image list

This commit is contained in:
2025-02-10 01:06:43 +08:00
parent 7e81a4ff96
commit 1d27c6ee8a
8 changed files with 125 additions and 68 deletions

View File

@@ -503,12 +503,14 @@ type (
}
// 所有图片列表响应参数
ImageMeta {
ID int64 `json:"id"`
fileName string `json:"file_name"`
filePath string `json:"file_path"`
URL string `json:"url"`
fileSize string `json:"file_size"`
CreatedAt string `json:"created_at"`
ID int64 `json:"id"`
fileName string `json:"file_name"`
filePath string `json:"file_path"`
URL string `json:"url"`
fileSize string `json:"file_size"`
CreatedAt string `json:"created_at"`
Width float64 `json:"width"`
Height float64 `json:"height"`
}
AllImageDetail {
Date string `json:"date"`