2024-11-15 16:27:05 +08:00
|
|
|
package model
|
|
|
|
|
|
|
|
|
|
import "modelRT/constant"
|
|
|
|
|
|
2024-11-20 15:31:08 +08:00
|
|
|
func SelectModelByType(modelType int) string {
|
2024-11-15 16:27:05 +08:00
|
|
|
if modelType == constant.BusbarType {
|
2024-11-20 15:31:08 +08:00
|
|
|
return "BusBarSection"
|
2024-11-15 16:27:05 +08:00
|
|
|
}
|
2024-11-20 15:31:08 +08:00
|
|
|
return ""
|
2024-11-15 16:27:05 +08:00
|
|
|
}
|