1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.hdl.linkpm.sdk.device.spk;
|
| import androidx.annotation.IntDef;
| import java.lang.annotation.Retention;
| import static java.lang.annotation.RetentionPolicy.SOURCE;
|
|
| /**
| * Created by jlchen on 12/16/21.
| * 第三方品牌列表
| */
| @Retention(SOURCE)
| @IntDef({BrandType.All, BrandType.Hdl, BrandType.Tuya, BrandType.Megahealth, BrandType.All3tyBrand})
| public @interface BrandType {
| int All = 0;
| int Hdl = 1;
| int Tuya = 2;
| int Megahealth = 3;
| int All3tyBrand = 99;
| }
|
|