modelRT/model/model_select.go

11 lines
169 B
Go
Raw Normal View History

package model
import "modelRT/constant"
func SelectModelByType(modelType int) string {
if modelType == constant.BusbarType {
return "BusBarSection"
}
return ""
}