特朗普头像任务

This commit is contained in:
lianghuanjie
2025-01-20 21:55:43 +08:00
parent 38bb283fa1
commit 9c742c50c3
18 changed files with 266 additions and 32 deletions

View File

@@ -67,6 +67,11 @@ type GetTaskListResp struct {
Tasks []Task `json:"tasks"`
}
type GetTaskRewardReq struct {
ID uint `form:"id"` // 任务ID
RoleId int64 `form:"role_id,optional"` // 游戏角色ID
}
type GetTaskRewardResp struct {
Points int `json:"points"` // 积分
}
@@ -151,10 +156,6 @@ type Task struct {
FinishState int8 `json:"finish_state"` // 0:未完成 1:待校验 2:已完成未领取 3:已领取 4:不可参与
}
type TaskIdPath struct {
ID uint `path:"id"` // 任务ID
}
type UnStakeNftReq struct {
TokenId string `json:"token_id"` // nftID
}