无人机项目后端代码
guoshilong
2023-10-12 077d9291fd27df0510e416c1ba7b36a495343641
src/main/java/com/dji/sample/control/model/enums/FlyToStatusEnum.java
@@ -11,13 +11,13 @@
 */
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;