package dto // 定义概率数量统计结果结构体,用于接收四种录取概率对应的各自数量 type ProbabilityCountDTO struct { Hard int64 `json:"hard" gorm:"column:hard"` // 难录取(<60) Risky int64 `json:"risky" gorm:"column:risky"` // 可冲击(60<=x<73) Stable int64 `json:"stable" gorm:"column:stable"` // 较稳妥(73<=x<93) Safe int64 `json:"safe" gorm:"column:safe"` // 可保底(>=93) }