From 39be97455312fe3c347d6aeaa103d7e695a40cd2 Mon Sep 17 00:00:00 2001
From: guoshilong <123456>
Date: Mon, 09 Oct 2023 10:16:32 +0800
Subject: [PATCH] 隐藏重复定时和连续执行
---
src/api/wayline.ts | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/src/api/wayline.ts b/src/api/wayline.ts
index 8021fa3..b6170f4 100644
--- a/src/api/wayline.ts
+++ b/src/api/wayline.ts
@@ -76,8 +76,14 @@
rth_altitude: number // 相对机场返航高度 20 - 500
out_of_control_action: OutOfControlAction // 失控动作
+
+ //重复频率类型
+ rep_fre_type?:number
+ //重复频率值
+ rep_fre_val?:number
// 重复规则值
rep_rule_val?:[]
+ rep_rule_type?:number
}
// 新增计划
export const createPlan = async function (workspaceId: string, plan: CreatePlan): Promise<IWorkspaceResponse<any>> {
--
Gitblit v1.9.3