Skip to content

Commit

Permalink
新增获取音乐人周任务API
Browse files Browse the repository at this point in the history
  • Loading branch information
XiaoMengXinX committed Mar 12, 2022
1 parent 97c75e6 commit b943ebb
Showing 1 changed file with 15 additions and 12 deletions.
27 changes: 15 additions & 12 deletions types/musicianTasks.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,20 +60,23 @@ type MusicianWeeklyTasksData struct {
EndTime int64 `json:"endTime"`
ExtendInfo string `json:"extendInfo"`
Period int `json:"period"`
NeedToReceive int `json:"needToReceive"`
NeedToReceive int `json:"needToReceive,omitempty"`
UserStageTargetList []struct {
SortValue int `json:"sortValue"`
StageType int `json:"stageType"`
Times int `json:"times"`
Value int `json:"value"`
ProgressRate int `json:"progressRate"`
SumTarget int `json:"sumTarget"`
RewardId int `json:"rewardId"`
RewardType int `json:"rewardType"`
Worth int `json:"worth"`
Status int `json:"status"`
SortValue int `json:"sortValue"`
StageType int `json:"stageType"`
Times int `json:"times"`
Value int `json:"value"`
ProgressRate int `json:"progressRate"`
SumTarget int `json:"sumTarget"`
RewardId int `json:"rewardId"`
RewardType int `json:"rewardType"`
Worth int `json:"worth"`
Status int `json:"status"`
UserMissionId int64 `json:"userMissionId,omitempty"`
} `json:"userStageTargetList"`
HasSendWorth int `json:"hasSendWorth"`
HasSendWorth int `json:"hasSendWorth"`
UserMissionId int64 `json:"userMissionId,omitempty"`
UpdateTime int64 `json:"updateTime,omitempty"`
} `json:"list"`
} `json:"data"`
}

0 comments on commit b943ebb

Please sign in to comment.