wjc
2023-08-21 0a18a8180bc6040c941b07df1be1f7b726b4c155
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";
 
}