17 lines
363 B
Go
17 lines
363 B
Go
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
|
||
}
|