Files
jsowell-charger-web/jsowell-pile/src/main/java/com/jsowell/pile/service/EBikeSendCommandService.java

11 lines
235 B
Java
Raw Normal View History

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);
2024-09-03 11:41:33 +08:00
void startCharging(String pileSn, String connectorCode);
2024-08-20 15:14:49 +08:00
}