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";
|
}
|