19 lines
243 B
Go
19 lines
243 B
Go
package component
|
|
|
|
// 道岔驱采组件
|
|
type TurnoutQc struct {
|
|
CJ bool
|
|
DCJ bool
|
|
FCJ bool
|
|
DBJ bool
|
|
FBJ bool
|
|
}
|
|
|
|
// 限位电机组件
|
|
type LimitMotor struct {
|
|
Min int
|
|
Max int
|
|
Pos int
|
|
TransferSpeed int
|
|
}
|