panlili2024
2025-03-05 134209ad70f82051da3ce63471df0cc8f778e57d
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
26
27
package com.hdl.sdk.sourceos.bind;
 
 
import static java.lang.annotation.RetentionPolicy.SOURCE;
 
import androidx.annotation.StringDef;
 
import java.lang.annotation.Retention;
 
/**
 * Created by Tong on 2021/11/8.
 */
@StringDef({
        EventType.TEST_TYPE,
        EventType.ON_PLUS_BINDING_TYPE
 
})
@Retention(SOURCE)
public @interface EventType {
 
    //测试数据
    String TEST_TYPE = "event_test_type";
 
    //on+绑定成功
    String ON_PLUS_BINDING_TYPE = "event_on_plus_binding_type";
 
}