26 lines
438 B
Go
26 lines
438 B
Go
package repository
|
|
|
|
import "joylink.club/rtsssimulation/repository/model/proto"
|
|
|
|
type Station struct {
|
|
Identity
|
|
code string
|
|
ibp *IBP
|
|
}
|
|
|
|
func NewStation(id, code string) *Station {
|
|
return &Station{
|
|
Identity: identity{id, proto.DeviceType_DeviceType_Station},
|
|
code: code,
|
|
ibp: NewIBP(),
|
|
}
|
|
}
|
|
|
|
func (s *Station) GetIbpEmp() *IBPRefMap {
|
|
return s.ibp.Emp
|
|
}
|
|
|
|
func (s *Station) GetIbpSpk() *IBPRefMap {
|
|
return s.ibp.Spk
|
|
}
|