| | |
| | | */ |
| | | public enum FlyToStatusEnum { |
| | | |
| | | WAYLINE_PROGRESS("wayline_progress", "The FlyTo job is in progress."), |
| | | WAYLINE_PROGRESS("wayline_progress", "飞向目标作业正在进行中"), |
| | | |
| | | WAYLINE_FAILED("wayline_failed", "The Fly To task execution failed."), |
| | | WAYLINE_FAILED("wayline_failed", "飞向目标作业执行失败"), |
| | | |
| | | WAYLINE_OK("wayline_ok", "The FlyTo job executed successfully."), |
| | | WAYLINE_OK("wayline_ok", "飞向目标作业执行成功"), |
| | | |
| | | WAYLINE_CANCEL("wayline_cancel", "The FlyTo job is closed."); |
| | | WAYLINE_CANCEL("wayline_cancel", "飞向目标作业取消"); |
| | | |
| | | String status; |
| | | |