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

11 lines
225 B
Java
Raw Normal View History

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
}