11 lines
167 B
Go
11 lines
167 B
Go
|
|
package model
|
||
|
|
|
||
|
|
import "modelRT/constant"
|
||
|
|
|
||
|
|
func SelectModelByType(modelType int) any {
|
||
|
|
if modelType == constant.BusbarType {
|
||
|
|
return BusbarSection{}
|
||
|
|
}
|
||
|
|
return nil
|
||
|
|
}
|