diff --git a/app/md/md_points_center.go b/app/md/md_points_center.go index bbe31e3..3567877 100644 --- a/app/md/md_points_center.go +++ b/app/md/md_points_center.go @@ -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"` +} diff --git a/go.mod b/go.mod index 7f0d8f1..7ac4a35 100644 --- a/go.mod +++ b/go.mod @@ -33,7 +33,7 @@ require ( require ( code.fnuoos.com/EggPlanet/egg_models.git v0.2.1-0.20241122113411-25d1f2bb1ad8 - code.fnuoos.com/EggPlanet/egg_system_rules.git v0.0.4-0.20241122112751-6744679ac54a + code.fnuoos.com/EggPlanet/egg_system_rules.git v0.0.4-0.20241123034858-48fbf35fcb21 code.fnuoos.com/go_rely_warehouse/zyos_go_es.git v1.0.1-0.20241118083738-0f22da9ba0be code.fnuoos.com/go_rely_warehouse/zyos_go_mq.git v0.0.5 github.com/aliyun/aliyun-oss-go-sdk v3.0.2+incompatible