package com.zhitan.config.mqtt;
|
|
public enum MqttTopic {
|
SERVICE_DOWN("lanbao/nygl/service/down");
|
|
public final static String DEFAULT_TOPIC = "lanbao/nygl/device/up";
|
|
public final static String DEVICE_KT_UP = "lanbao/nygl/device/kt/up";
|
|
|
|
|
|
|
private String topic;
|
MqttTopic(String topic) {
|
this.topic = topic;
|
}
|
public String getTopic() {
|
return topic;
|
}
|
public void setTopic(String topic) {
|
this.topic = topic;
|
}
|
}
|