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