8 lines
110 B
Go
8 lines
110 B
Go
package state
|
|
|
|
//物理区段状态
|
|
type PhysicalSectionState struct {
|
|
//是否有车占用
|
|
Occupied bool
|
|
}
|