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