mac
2023-11-22 3f41182984d69d7fae703776edd1591f48dff93f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.hdl.linkpm.sdk.home.type;
 
import androidx.annotation.StringDef;
 
import java.lang.annotation.Retention;
 
import static java.lang.annotation.RetentionPolicy.SOURCE;
 
/**
 * Created by jlchen on 12/10/21.
 * 住宅类型 ZIGBEE、BUSPRO、A
 */
@Retention(SOURCE)
@StringDef({HomeType.ZIGBEE, HomeType.BUSPRO, HomeType.A})
public @interface HomeType {
    //0:ZIGBEE
    String ZIGBEE = "ZIGBEE";
    //1:BUSPRO
    String BUSPRO = "BUSPRO";
    //2:A
    String A = "A";
}