package com.dy.pipIrrRemote.result;
|
|
import lombok.AllArgsConstructor;
|
import lombok.Getter;
|
|
/**
|
* @author ZhuBaoMin
|
* @date 2024-05-07 14:54
|
* @LastEditTime 2024-05-07 14:54
|
* @Description
|
*/
|
@Getter
|
@AllArgsConstructor
|
public enum RemoteResultCode {
|
/**
|
* Valve
|
*/
|
GET_RESULT_IN_ONE_MINUTE(10001,"1分钟后去查看结果"),
|
GET_RESULT_ERROR(10002, "获取结果异常"),
|
|
/**
|
* RTU
|
*/
|
RTU_ADDR_CANNOT_BE_NULL(20001, "阀控器地址不能为空");
|
|
private final Integer code;
|
private final String message;
|
}
|