12 lines
235 B
Go
12 lines
235 B
Go
|
|
// Package constant define constant value
|
||
|
|
package constant
|
||
|
|
|
||
|
|
const (
|
||
|
|
// NullableType 空类型类型
|
||
|
|
NullableType = iota
|
||
|
|
// BusbarType 母线类型
|
||
|
|
BusbarType
|
||
|
|
// AsynchronousMotorType 异步电动机类型
|
||
|
|
AsynchronousMotorType
|
||
|
|
)
|