调整奖励类型和奖励

This commit is contained in:
2025-06-26 14:52:33 +08:00
parent 9bfdaf5fa2
commit 8107b9a719
38 changed files with 313 additions and 403 deletions

View File

@ -70,3 +70,16 @@ type GetTaskIn struct {
type GetTaskOut struct {
Success bool `json:"success"`
}
type UserTaskRecordsListIn struct {
UserId int
Page int
Size int
StoreId int
NetBarAccount string
}
type UserTaskRecordsListOut struct {
List []UserTask
Total int
}