rts-sim-module/repository/station.go

17 lines
333 B
Go
Raw Normal View History

2023-10-13 15:26:25 +08:00
package repository
import "joylink.club/rtsssimulation/repository/model/proto"
type Station struct {
Identity
code string
componentGroups []*ElectronicComponentGroup
}
func NewStation(id, code string) *Station {
return &Station{
Identity: identity{id, proto.DeviceType_DeviceType_Station},
code: code,
}
}