hxb
2022-09-08 2a01ef5e49422cca49bc7476fc1b8be8c8556561
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.hdl.sdk.link.gateway.type;
 
 
import java.lang.annotation.Retention;
 
import static java.lang.annotation.RetentionPolicy.SOURCE;
 
/**
 * Created by jlchen on 12/30/21.
 */
public class GatewayMasterType {
    //主网关
   public final String MasterTrue = "true";
    //从网关
   public final  String MasterFalse = "false";
    //未配置
   public final   String NO_CONFIG = "no_config";
}