From 223f05ad646693b6c5917aeba21a21f88207660e Mon Sep 17 00:00:00 2001 From: yvan Date: Sat, 26 Jul 2025 22:07:39 +0800 Subject: [PATCH] =?UTF-8?q?noInv=20=E5=8F=96=E6=B6=88=E8=AE=B0=E8=B4=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/types/RCS.d.ts | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/src/types/RCS.d.ts b/src/types/RCS.d.ts index f8f6ad9..4797ad3 100644 --- a/src/types/RCS.d.ts +++ b/src/types/RCS.d.ts @@ -88,9 +88,20 @@ declare interface AgvOptions { */ forceStartDirection?: LLCDirection - loadHeight: number + /** + * 搬运高度 + */ + loadHeight?: number - unloadHeight: number + /** + * 卸货高度 + */ + unloadHeight?: number + + /** + * 禁止记录库存 + */ + noInv?: boolean } declare type LLCDirection = 'UP' | 'DOWN' | 'LEFT' | 'RIGHT'