mirror of
https://github.com/aceld/kis-flow.git
synced 2025-01-23 07:30:23 +08:00
14 lines
256 B
Go
14 lines
256 B
Go
package proto
|
|
|
|
type StuScores struct {
|
|
StuId int `json:"stu_id"`
|
|
Score1 int `json:"score_1"`
|
|
Score2 int `json:"score_2"`
|
|
Score3 int `json:"score_3"`
|
|
}
|
|
|
|
type StuAvgScore struct {
|
|
StuId int `json:"stu_id"`
|
|
AvgScore float64 `json:"avg_score"`
|
|
}
|