hxb
2024-10-24 ce88de4891b87c3b7b2750575e15d6e48d518852
HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/project/type/DebugStatusType.java
New file
@@ -0,0 +1,26 @@
package com.hdl.linkpm.sdk.project.type;
import androidx.annotation.StringDef;
import java.lang.annotation.Retention;
import static java.lang.annotation.RetentionPolicy.SOURCE;
/**
 * Created by jlchen on 12/9/21.
 * 调试状态类型 字符串
 */
@Retention(SOURCE)
@StringDef({DebugStatusType.To_Be_Debugged, DebugStatusType.Debugging, DebugStatusType.WAIT_DELIVERED, DebugStatusType.Delivered, DebugStatusType.INITIAL_TATE})
public @interface DebugStatusType {
    //0:待调试
    String To_Be_Debugged = "To_Be_Debugged";
    //1:调试中
    String Debugging = "Debugging";
    //3:待交付
    String WAIT_DELIVERED = "WAIT_DELIVERED";
    //4:已交付
    String Delivered = "Delivered";
    //5:初始态
    String INITIAL_TATE = "INITIAL_TATE";
}