rts-sim-module/modelrepo/model/section.go
walker c4bc8c640f 重构singleton组件及相关方法接口
调整repo目录结构和命名
初步开始重构仿真实体加载
2023-12-28 16:49:28 +08:00

22 lines
332 B
Go

package model
type Section interface {
Model
Code() string
// 所在Link范围
LinkRanges() []*LinkRange
}
// 物理区段(实际检测区段)
type PhysicalSection interface {
Section
LogicalSections() []LogicalSection
}
// 逻辑区段
type LogicalSection interface {
Section
// 物理区段
Parent() PhysicalSection
}