From ce88de4891b87c3b7b2750575e15d6e48d518852 Mon Sep 17 00:00:00 2001
From: hxb <hxb@hdlchina.com.cn>
Date: 星期四, 24 十月 2024 10:39:12 +0800
Subject: [PATCH] 增加云端库

---
 HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/project/type/DebugStatusIntType.java |   25 +++++++++++++++++++++++++
 1 files changed, 25 insertions(+), 0 deletions(-)

diff --git a/HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/project/type/DebugStatusIntType.java b/HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/project/type/DebugStatusIntType.java
new file mode 100644
index 0000000..36b0c39
--- /dev/null
+++ b/HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/project/type/DebugStatusIntType.java
@@ -0,0 +1,25 @@
+package com.hdl.linkpm.sdk.project.type;
+
+import androidx.annotation.IntDef;
+import java.lang.annotation.Retention;
+
+import static java.lang.annotation.RetentionPolicy.SOURCE;
+
+/**
+ * Created by jlchen on 12/9/21.
+ * 璋冭瘯鐘舵�� Int 绫诲瀷
+ */
+@Retention(SOURCE)
+@IntDef({DebugStatusIntType.To_Be_Debugged, DebugStatusIntType.Debugging, DebugStatusIntType.WAIT_DELIVERED, DebugStatusIntType.Delivered, DebugStatusIntType.INITIAL_TATE})
+public @interface DebugStatusIntType {
+    //0锛氬緟璋冭瘯
+    int To_Be_Debugged = 0;
+    //1锛氳皟璇曚腑
+    int Debugging = 1;
+    //3锛氬緟浜や粯
+    int WAIT_DELIVERED = 3;
+    //4锛氬凡浜や粯
+    int Delivered = 4;
+    //5锛氬垵濮嬫��
+    int INITIAL_TATE = 5;
+}

--
Gitblit v1.8.0