package com.jsowell.pile.service; import com.jsowell.pile.domain.ebike.AbsEBikeMessage; /** * 电单车发送命令服务 */ public interface EBikeSendCommandService { void send(String pileSn, AbsEBikeMessage msg); }