wjc
2023-07-07 22494af577e21a930abef309f2f60c03c9615bd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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;
}