10 lines
421 B
Go
10 lines
421 B
Go
package dto
|
||
|
||
// 定义概率数量统计结果结构体,用于接收四种录取概率对应的各自数量
|
||
type ProbabilityCountDTO struct {
|
||
HardAdmit int64 `gorm:"column:hard_admit"` // 难录取(<60)
|
||
Impact int64 `gorm:"column:impact"` // 可冲击(60<=x<73)
|
||
Stable int64 `gorm:"column:stable"` // 较稳妥(73<=x<93)
|
||
Secure int64 `gorm:"column:secure"` // 可保底(>=93)
|
||
}
|