golang-yitisheng-server/server/modules/yx/dto/probability_count_dto.go

10 lines
421 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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
}