|
|
@@ -30,3 +30,17 @@ type GetContributionValueFlowResp struct { |
|
|
|
List []ContributionValueFlowNode `json:"list"` |
|
|
|
Paginate Paginate `json:"paginate"` |
|
|
|
} |
|
|
|
|
|
|
|
type EggPointRecordNode struct { |
|
|
|
StartAt string `json:"start_at"` // 开始时间 |
|
|
|
EndAt string `json:"end_at"` // 结束时间 |
|
|
|
Year string `json:"year"` // 年份 |
|
|
|
Week string `json:"week"` //周数 |
|
|
|
Score string `json:"score"` // 分数 |
|
|
|
} |
|
|
|
|
|
|
|
type GetEggPointRecordResp struct { |
|
|
|
NowScore string `json:"now_score"` // 当前分数 |
|
|
|
List []EggPointRecordNode `json:"list"` // 分数明细列表 |
|
|
|
Paginate Paginate `json:"paginate"` |
|
|
|
} |