| | |
| | | */ |
| | | public enum DrcStatusErrorEnum implements IErrorInfo { |
| | | |
| | | SUCCESS(0, "success"), |
| | | SUCCESS(0, "成功"), |
| | | |
| | | MQTT_ERR(514300, "The mqtt connection error."), |
| | | MQTT_ERR(514300, "mqtt连接错误"), |
| | | |
| | | HEARTBEAT_TIMEOUT(514301, "The heartbeat times out and the dock disconnects."), |
| | | HEARTBEAT_TIMEOUT(514301, "心跳超时,连接断开"), |
| | | |
| | | MQTT_CERTIFICATE_ERR(514302, "The mqtt certificate is abnormal and the connection fails."), |
| | | MQTT_CERTIFICATE_ERR(514302, "mqtt证书异常,连接失败"), |
| | | |
| | | MQTT_LOST(514303, "The dock network is abnormal and the mqtt connection is lost."), |
| | | MQTT_LOST(514303, "机场网络异常,mqtt连接丢失"), |
| | | |
| | | MQTT_REFUSE(514304, "The dock connection to mqtt server was refused."), |
| | | MQTT_REFUSE(514304, "到mqtt服务器的机场连接被拒绝"), |
| | | |
| | | UNKNOWN(-1, "Unknown"); |
| | | UNKNOWN(-1, "未知"); |
| | | |
| | | String msg; |
| | | |