hxb
2024-10-24 d723fee177238df0dbab80eb788876ebd154927d
HDLLinkPMSdk/src/main/java/com/hdl/linkpm/sdk/device/spk/BrandType.java
New file
@@ -0,0 +1,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;
}