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
23
24
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.
 * 网关类型
 */
@Retention(SOURCE)
@StringDef({GatewayType.BUSUDPGATEWAY, GatewayType.AGATEWAY, GatewayType.ZIGBEEGATEWAY, GatewayType.KNXGATEWAY})
public @interface GatewayType {
 
    String BUSUDPGATEWAY = "BUSUDPGATEWAY";
 
    String AGATEWAY = "AGATEWAY";
 
    String ZIGBEEGATEWAY = "ZIGBEEGATEWAY";
 
    String KNXGATEWAY = "KNXGATEWAY";
 
}