书籍列表接口新增参数

This commit is contained in:
2025-08-13 15:19:42 +08:00
parent 6ccc87f2bf
commit 8afe651c64
201 changed files with 6987 additions and 1066 deletions

View File

@ -1 +1,16 @@
package model
import (
"github.com/gogf/gf/v2/net/ghttp"
)
// 上传图片输入结构体
// File: 上传的文件Type: 图片类型或业务类型
type UploadImageIn struct {
File *ghttp.UploadFile `json:"file" dc:"上传的文件"`
Type string `json:"type" dc:"图片类型或业务类型"`
}
type UploadImageOut struct {
ImageUrl string
}