添加接口字段定义
This commit is contained in:
parent
b3e1e68b70
commit
6fdeda5315
|
|
@ -46,7 +46,7 @@ public class AircraftVO implements Serializable {
|
|||
private String aircraftModel;
|
||||
|
||||
/** 无人机状态 */
|
||||
@Schema(description = "无人机状态")
|
||||
@Schema(description = "无人机状态:POWER_ON_IN_CABIN-舱内开机, POWER_OFF_IN_CABIN-舱内关机, POWER_ON_OUT_CABIN-舱外开机, POWER_OFF_OUT_CABIN-舱外关机, IN_MISSION-任务中, DEBUGGING-调试, OFFLINE-离线")
|
||||
@Excel(name = "无人机状态")
|
||||
private String aircraftStatus;
|
||||
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ public class DockVO implements Serializable {
|
|||
private String dockModel;
|
||||
|
||||
/** 机场状态 */
|
||||
@Schema(description = "机场状态")
|
||||
@Schema(description = "机场状态:IDLE-空闲中, Debugging-调试, Upgrading-固件升级中, Working-作业中, UNKNOWN-待标定, OFFLINE-离线")
|
||||
@Excel(name = "机场状态")
|
||||
private String dockStatus;
|
||||
|
||||
|
|
@ -81,7 +81,7 @@ public class DockVO implements Serializable {
|
|||
private String aircraftModel;
|
||||
|
||||
/** 无人机状态 */
|
||||
@Schema(description = "无人机状态")
|
||||
@Schema(description = "无人机状态:POWER_ON_IN_CABIN-舱内开机, POWER_OFF_IN_CABIN-舱内关机, POWER_ON_OUT_CABIN-舱外开机, POWER_OFF_OUT_CABIN-舱外关机, IN_MISSION-任务中, DEBUGGING-调试, OFFLINE-离线")
|
||||
@Excel(name = "无人机状态")
|
||||
private String aircraftStatus;
|
||||
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ public class DockWithGPSVO implements Serializable {
|
|||
@Excel(name = "机场型号")
|
||||
private String dockModel;
|
||||
|
||||
@Schema(description = "机场状态")
|
||||
@Schema(description = "机场状态:IDLE-空闲中, Debugging-调试, Upgrading-固件升级中, Working-作业中, UNKNOWN-待标定, OFFLINE-离线")
|
||||
@Excel(name = "机场状态")
|
||||
private String dockStatus;
|
||||
|
||||
|
|
@ -67,7 +67,7 @@ public class DockWithGPSVO implements Serializable {
|
|||
@Excel(name = "无人机型号")
|
||||
private String aircraftModel;
|
||||
|
||||
@Schema(description = "无人机状态")
|
||||
@Schema(description = "无人机状态:POWER_ON_IN_CABIN-舱内开机, POWER_OFF_IN_CABIN-舱内关机, POWER_ON_OUT_CABIN-舱外开机, POWER_OFF_OUT_CABIN-舱外关机, IN_MISSION-任务中, DEBUGGING-调试, OFFLINE-离线")
|
||||
@Excel(name = "无人机状态")
|
||||
private String aircraftStatus;
|
||||
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ public class PayloadVO implements Serializable
|
|||
private String payloadType;
|
||||
|
||||
/** 挂载状态 */
|
||||
@Schema(description = "挂载状态")
|
||||
@Schema(description = "挂载状态:ONLINE-在线, OFFLINE-离线")
|
||||
@Excel(name = "挂载状态")
|
||||
private String payloadStatus;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue