iot-server/bnhz-common/src/main/java/com/bnhz/common/enums/FunctionReplyStatus.java

22 lines
391 B
Java
Raw Normal View History

2025-05-13 01:52:42 +00:00
package com.bnhz.common.enums;
import lombok.AllArgsConstructor;
import lombok.Getter;
/**
*
* @author bill
*/
@Getter
@AllArgsConstructor
public enum FunctionReplyStatus {
SUCCESS(200,"设备执行成功"),
FAIl(201,"指令执行失败"),
UNKNOWN(204,"设备超时未回复"),
NORELY(203, "指令下发成功");
int code;
String message;
}