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";
|
}
|