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