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