调整接口分组
This commit is contained in:
@ -6,7 +6,7 @@ import (
|
||||
)
|
||||
|
||||
type UploadReq struct {
|
||||
g.Meta `path:"/upload/image" method:"post" tags:"WEB" summary:"上传文件"`
|
||||
g.Meta `path:"/upload/image" method:"post" tags:"Backend/WEB" summary:"(系统、商户、门店)上传文件"`
|
||||
File *ghttp.UploadFile `json:"file"`
|
||||
}
|
||||
type UploadRes struct {
|
||||
@ -14,7 +14,7 @@ type UploadRes struct {
|
||||
}
|
||||
|
||||
type UploadGameImgReq struct {
|
||||
g.Meta `path:"/upload/game" method:"post" tags:"WEB" summary:"上传游戏图标文件"`
|
||||
g.Meta `path:"/upload/game" method:"post" tags:"Backend/WEB" summary:"上传游戏图标文件"`
|
||||
File *ghttp.UploadFile `json:"file"`
|
||||
}
|
||||
type UploadGameImgRes struct {
|
||||
@ -22,7 +22,7 @@ type UploadGameImgRes struct {
|
||||
}
|
||||
|
||||
type UploadUserImgReq struct {
|
||||
g.Meta `path:"/upload/user" method:"post" tags:"WEB" summary:"上传用户头像文件"`
|
||||
g.Meta `path:"/upload/user" method:"post" tags:"WEB" summary:"(系统、商户、门店、PC)上传用户头像文件"`
|
||||
File *ghttp.UploadFile `json:"file"`
|
||||
}
|
||||
|
||||
@ -31,7 +31,7 @@ type UploadUserImgRes struct {
|
||||
}
|
||||
|
||||
type UploadRewardImgReq struct {
|
||||
g.Meta `path:"/upload/reward" method:"post" tags:"WEB" summary:"上传奖励图标文件"`
|
||||
g.Meta `path:"/upload/reward" method:"post" tags:"Backend/WEB" summary:"(系统、商户、门店)上传奖励图标文件"`
|
||||
File *ghttp.UploadFile `json:"file"`
|
||||
}
|
||||
type UploadRewardImgRes struct {
|
||||
|
||||
Reference in New Issue
Block a user