This repository has been archived on 2025-11-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
AUTS_OLD/UTS_Core/UTSModule/Station/StationPlanManager.vb

21 lines
651 B
VB.net
Raw Normal View History

2024-03-11 16:32:52 +08:00

Imports UTS_Core.UTSModule.Station.ProcessStation
Namespace UTSModule.Station
Public Class StationPlanManager
Public Shared Function CreateStationPlan(type As StationTypeEnum, packet As StationPacket) As StationPlan
Select Case type
Case StationTypeEnum.Test
Return New StationTestPlan(packet)
Case StationTypeEnum.Package
Return New StationPackagePlan(packet)
Case Else
Return Nothing
End Select
Console.WriteLine($"站位类型:{type}")
End Function
End Class
End Namespace