package com.jsowell.pile.service; import com.jsowell.pile.domain.ykcCommond.StartChargingCommand; import com.jsowell.pile.domain.ykcCommond.StopChargingCommand; /** * 电单车发送命令服务 */ public interface EBikeSendCommandService { /** * 启动充电 * @param command */ void sendStartChargingCommand(StartChargingCommand command) throws Exception; /** * 停止充电 * @param command */ void sendStopChargingCommand(StopChargingCommand command) throws Exception; }