Files
2026-02-04 20:27:13 +08:00

11 lines
211 B
Go

package schedulingconfigs
// CandidateInterface 候选对象接口
type CandidateInterface interface {
// CandidateWeight 权重
CandidateWeight() uint
// CandidateCodes 代号
CandidateCodes() []string
}