service/apollostruct/RavenIQtest.go

66 lines
2.5 KiB
Go
Raw Normal View History

2024-07-19 17:46:58 +08:00
package apollostruct
type QuestionMapCfg struct {
2024-07-22 15:57:56 +08:00
Map map[int64]*RavenIQTestQuestion `json:"map"`
ClassList []int64 `json:"class_list"`
2024-07-19 17:46:58 +08:00
}
type RavenIQTestQuestion struct {
QuestionId int64 `json:"question_id" bson:"question_id"` // 问题Id
ClassId int64 `json:"class_id" bson:"class_id"` // 大类id
CorrectOption int64 `json:"correct_option" bson:"correct_option"` // 正确选项
}
type IQResult struct {
2024-07-25 19:59:35 +08:00
IQBlockId int64 `json:"IQ_Block_Id"` // IQ分段id
IQGrade string `json:"IQ_grade"` // 智商等级
Percentile int64 `json:"percentile"` // 百分位
IQLowerBound int64 `json:"IQ_lower_bound"` // IQ下界
IQUpperBound int64 `json:"IQ_upper_bound"` // IQ上界
Description string `json:"description"` // 描述
Suggestions []string `json:"suggestions"` // 建议
2024-07-19 17:46:58 +08:00
}
type AgeScore2IQResultMapCfg struct {
AgeBlockIndex2ScoreBlockListMap map[int][]float64 `json:"age_block_index_2_score_block_list_map"` // 年龄分段到分数分布区域的映射map
AgeBlockList []int64 `json:"age_block_list"` // 年龄段区域,以年龄在该年龄段中第一次出现或最后一个比他小的位置作为年龄段索引
2024-07-19 18:31:15 +08:00
ScoreBlockIndex2IQBlockIdMap map[int]int64 `json:"score_block_index_2_IQ_block_id_map"` // 分数分段到IQ范围id的映射map
}
2024-07-22 09:17:49 +08:00
type ClassScore2ClassResultMapCfg struct {
2024-07-22 15:57:56 +08:00
Map map[int64][]int64 `json:"map" bson:"map"` // 大类Id到大类分数分布区域的映射map
2024-07-22 09:17:49 +08:00
}
2024-07-19 18:31:15 +08:00
type IQResultMapCfg struct {
Map map[int64]*IQResult `json:"map"`
2024-07-19 17:46:58 +08:00
}
2024-07-22 09:17:49 +08:00
type ClassResult struct {
2024-07-22 13:45:57 +08:00
Description string `json:"description"` // 描述
Analysis string `json:"analysis"` // 成绩分析
Suggestions []*Suggestion `json:"suggestions"` // 建议
}
2024-07-24 14:14:26 +08:00
type ClassInfo struct {
2024-07-25 20:11:38 +08:00
ClassId int64 `json:"class_id"` // 大类id
ClassName string `json:"class_name"` // 大类名称
ClassFullScore int64 `json:"class_full_score"` // 大类满分
2024-07-24 14:14:26 +08:00
}
2024-07-22 13:45:57 +08:00
type Suggestion struct {
Title string `json:"title"`
Tips []*Tip `json:"tips"`
}
type Tip struct {
Summary string `json:"summary"` // 概括
Content string `json:"content"` // 内容
2024-07-22 09:17:49 +08:00
}
type ClassResultMapCfg struct {
2024-07-24 14:14:26 +08:00
Map map[int64]*ClassResult `json:"map"`
ClassInfoMap map[int64]*ClassInfo `json:"class_info_map"`
2024-07-25 20:11:38 +08:00
FullScore int64 `json:"full_score"` // 满分
TotalScore int64 `json:"total_score"` // 总分
2024-07-22 09:17:49 +08:00
}