modelRT/constants/electrical_components.go

14 lines
260 B
Go
Raw Normal View History

// Package constants define constant variable
package constants
const (
// NullableType 空类型类型
NullableType = iota
// BusbarType 母线类型
BusbarType
// AsyncMotorType 异步电动机类型
AsyncMotorType
2024-12-18 16:25:49 +08:00
// DemoType Demo类型
DemoType
)