修改类文件名称大小写问题2

Signed-off-by: 董宏宇 <martindhy@gmail.com>
This commit is contained in:
董宏宇
2021-10-18 19:53:42 +08:00
parent 1f4f906748
commit cf9767436f
26 changed files with 122 additions and 128 deletions

View File

@@ -9,7 +9,7 @@ import com.mogo.eagle.core.function.api.base.IMoGoFunctionServerProvider;
* 自动驾驶节点
*
*/
public interface IMoGoAutopilotProvider extends IMoGoFunctionServerProvider {
public interface IMoGoAutopilotsProvider extends IMoGoFunctionServerProvider {
/**
* 连接自动驾驶域控制器

View File

@@ -8,21 +8,21 @@ import com.mogo.eagle.core.data.traffic.TrafficData
* @date 2021/9/22 8:59 下午
* 自动驾驶状态回调监听
*/
interface IMoGoAutopilotStatusListener {
interface IMoGoAutopilotsStatusListener {
/**
* 自动驾驶状态信息
*
* @param autoPilotStatusInfo 状态信息
* @param autoPilotStatussInfo 状态信息
*/
fun onAutopilotStatusResponse(autoPilotStatusInfo: AutopilotStatusInfo)
fun onAutopilotStatusResponse(autoPilotStatussInfo: AutopilotStatussInfo)
/**
* 自动驾驶到站
*
* @param autopilotWayArrive 所到车站的简单信息
*/
fun onAutopilotArriveAtStation(autopilotWayArrive: AutopilotStationInfo?)
fun onAutopilotArriveAtStation(autopilotWayArrive: AutopilotStationsInfo?)
/**