You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
538 B

namespace Service.Execute
{
/// <summary>
/// 软件管理类
/// </summary>
public class StationSoftMgr
{
public static SwappingStateMachine SwappingStateMachine = SwappingStateMachine.GetInstance();
#region 换电流程启动
/// <summary>
/// 换电流程启动
/// </summary>
public static void SwappingStateMachineStart()
{
SwappingStateMachine.Start();
}
#endregion 换电流程启动
}
}