2025-06-13 15:34:49 +08:00
|
|
|
// Package constants define constant variable
|
|
|
|
|
package constants
|
2024-11-22 16:41:04 +08:00
|
|
|
|
|
|
|
|
const (
|
|
|
|
|
// NullableType 空类型类型
|
|
|
|
|
NullableType = iota
|
|
|
|
|
// BusbarType 母线类型
|
|
|
|
|
BusbarType
|
2024-12-10 16:36:59 +08:00
|
|
|
// AsyncMotorType 异步电动机类型
|
|
|
|
|
AsyncMotorType
|
2024-12-18 16:25:49 +08:00
|
|
|
// DemoType Demo类型
|
|
|
|
|
DemoType
|
2024-11-22 16:41:04 +08:00
|
|
|
)
|