【增加获取车站code方法】

This commit is contained in:
weizhihong 2023-10-31 14:42:42 +08:00
parent e21995b695
commit ab2036ee89

View File

@ -16,6 +16,10 @@ func NewStation(id, code string) *Station {
}
}
func (s *Station) GetCode() string {
return s.code
}
func (s *Station) GetIbpEmp() *IBPRefMap {
return s.ibp.Emp
}