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

Signed-off-by: 董宏宇 <martindhy@gmail.com>
This commit is contained in:
董宏宇
2021-10-18 20:01:06 +08:00
parent cf9767436f
commit b31f2b64c7
36 changed files with 191 additions and 191 deletions

View File

@@ -7,7 +7,7 @@ package com.mogo.eagle.core.data.autopilot;
* <p>
* 描述
*/
public class AutopilotWarnMessage {
public class AutoPilotWarnMessage {
public String content;
public String level;

View File

@@ -8,12 +8,12 @@ package com.mogo.eagle.core.data.autopilot;
* 域控制器 控制指令发送
*
*/
public class AutopilotControlCmdPam {
public class AutopilotControlCmdParameter {
public String action;
public Object result;
public AutopilotControlCmdPam(String action, Object result) {
public AutopilotControlCmdParameter(String action, Object result) {
this.action = action;
this.result = result;
}

View File

@@ -9,7 +9,7 @@ import java.util.List;
* 启动自动驾驶参数
*
*/
public class AutopilotControlPam {
public class AutopilotControlParameters {
public AutoPilotLonLat startLatLon;
public List<AutoPilotLonLat> wayLatLons;
@@ -44,7 +44,7 @@ public class AutopilotControlPam {
@Override
public String toString() {
return "RemoteControlAutoPilotParameters{" +
return "AutopilotControlParameters{" +
"startLatLon=" + startLatLon +
", wayLatLons=" + wayLatLons +
", endLatLon=" + endLatLon +

View File

@@ -7,13 +7,13 @@ package com.mogo.eagle.core.data.autopilot;
* 自动驾驶网约车回调数据
*
*/
public class AutopilotStationsInfo {
public class AutopilotStationInfo {
private int type;
private double lon;
private double lat;
public AutopilotStationsInfo(int type, double lon, double lat) {
public AutopilotStationInfo(int type, double lon, double lat) {
this.type = type;
this.lon = lon;
this.lat = lat;

View File

@@ -7,7 +7,7 @@ import java.io.Serializable;
* @des
* @date 2020/7/14
*/
public class AutopilotStatusBean implements Serializable {
public class AutopilotStatus implements Serializable {
/**
* action : autopilotstate

View File

@@ -9,7 +9,7 @@ import java.io.Serializable
* 不建议自己初始化此对象建议使用 CallerAutoPilotStatusListenerManager.INSTANCE.getAutoPilotStatusInfo();
*
*/
class AutopilotStatussInfo : Serializable {
class AutopilotStatusInfo : Serializable {
/**
* 当前链接的IP地址, 默认地址 192.168.1.102
*/