2024-08-20 15:14:49 +08:00
|
|
|
package com.jsowell.pile.service;
|
|
|
|
|
|
|
|
|
|
import com.jsowell.pile.domain.ebike.AbsEBikeMessage;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 电单车发送命令服务
|
|
|
|
|
*/
|
|
|
|
|
public interface EBikeSendCommandService {
|
2024-08-20 15:43:30 +08:00
|
|
|
void send(String pileSn, AbsEBikeMessage msg);
|
2024-08-20 15:14:49 +08:00
|
|
|
}
|