You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package com.mh.user.constants; |
|
|
|
/** |
|
* @author LJF |
|
* @version 1.0 |
|
* @project springboot-mqtt-demo |
|
* @description mqtt选择模式 |
|
* @date 2024-10-29 15:19:21 |
|
*/ |
|
public enum MqttUseEnum { |
|
|
|
BASIC, |
|
|
|
DRC |
|
|
|
}
|
|
|