From c9172960bda01fca866969cc6ec4ca126eb97104 Mon Sep 17 00:00:00 2001
From: 云 <2163098428@qq.com>
Date: 星期一, 03 八月 2026 10:44:46 +0800
Subject: [PATCH] docs(skills): 添加 Obsidian Markdown 和 JSON Canvas 使用参考文档

---
 yudao-module-crm/src/main/java/cn/iocoder/yudao/module/crm/enums/common/CrmSceneTypeEnum.java |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/yudao-module-crm/src/main/java/cn/iocoder/yudao/module/crm/enums/common/CrmSceneTypeEnum.java b/yudao-module-crm/src/main/java/cn/iocoder/yudao/module/crm/enums/common/CrmSceneTypeEnum.java
index 9a1a420..d129d02 100644
--- a/yudao-module-crm/src/main/java/cn/iocoder/yudao/module/crm/enums/common/CrmSceneTypeEnum.java
+++ b/yudao-module-crm/src/main/java/cn/iocoder/yudao/module/crm/enums/common/CrmSceneTypeEnum.java
@@ -18,7 +18,8 @@
 
     OWNER(1, "鎴戣礋璐g殑"),
     INVOLVED(2, "鎴戝弬涓庣殑"),
-    SUBORDINATE(3, "涓嬪睘璐熻矗鐨�");
+    SUBORDINATE(3, "涓嬪睘璐熻矗鐨�"),
+    ALL(4, "鍏ㄩ儴");
 
     public static final Integer[] ARRAYS = Arrays.stream(values()).map(CrmSceneTypeEnum::getType).toArray(Integer[]::new);
 
@@ -43,6 +44,10 @@
         return ObjUtil.equal(SUBORDINATE.getType(), type);
     }
 
+    public static boolean isAll(Integer type) {
+        return ObjUtil.equal(ALL.getType(), type);
+    }
+
     @Override
     public Integer[] array() {
         return ARRAYS;

--
Gitblit v1.9.3