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