2023-12-29 21:28:16 +08:00
|
|
|
package request
|
|
|
|
|
|
|
|
import "github.com/gogf/gf/v2/frame/g"
|
|
|
|
|
|
|
|
type GetSponsorReq struct {
|
|
|
|
g.Meta `path:"/list" tags:"获取赞助" method:"get" summary:"获取赞助"`
|
|
|
|
}
|
2024-01-02 00:28:12 +08:00
|
|
|
type AddSponsorReq struct {
|
|
|
|
g.Meta `path:"/add" tags:"添加赞助" method:"post" summary:"添加赞助"`
|
|
|
|
}
|
2024-01-06 22:41:38 +08:00
|
|
|
type GetCheckSponsorReq struct {
|
|
|
|
g.Meta `path:"/list" tags:"获取检查赞助" method:"get" summary:"获取检查赞助"`
|
|
|
|
}
|
|
|
|
type CheckSponsorReq struct {
|
|
|
|
g.Meta `path:"/" tags:"检查赞助" method:"patch" summary:"检查赞助"`
|
|
|
|
}
|
2023-12-29 21:28:16 +08:00
|
|
|
|
|
|
|
type GetSponsorRes struct{}
|
2024-01-02 00:28:12 +08:00
|
|
|
type AddSponsorRes struct{}
|
2024-01-06 22:41:38 +08:00
|
|
|
type GetCheckSponsorRes struct{}
|
|
|
|
type CheckSponsorRes struct{}
|