新增任务排行榜接口、用户绑定游戏人生账号接口定义
This commit is contained in:
15
api/task/v1/task.go
Normal file
15
api/task/v1/task.go
Normal file
@ -0,0 +1,15 @@
|
||||
package v1
|
||||
|
||||
import "github.com/gogf/gf/v2/frame/g"
|
||||
|
||||
type TaskListReq struct {
|
||||
}
|
||||
type TaskRankingReq struct {
|
||||
g.Meta `path:"/task/ranking" method:"get" tags:"Task" summary:"任务排行榜"`
|
||||
StoreId int `json:"storeId" v:"required#请选择店铺" dc:"门店id"`
|
||||
Page int `json:"page" dc:"页数"`
|
||||
Size int `json:"size" dc:"条数"`
|
||||
}
|
||||
|
||||
type TaskRankingRes struct {
|
||||
}
|
||||
Reference in New Issue
Block a user