pipIrr-platform/pipIrr-web/pipIrr-web-remote/src/main/java/com/dy/pipIrrRemote/result/RemoteResultCode.java
@@ -13,11 +13,18 @@ @AllArgsConstructor public enum RemoteResultCode { /** * 远程操作 * Valve */ DIVIDE_FAIL(10001, "分水房添加失败"), DELETE_DIVIDE_FAIL(10001, "分水房删除失败"), NO_DIVIDES(10001, "无符合条件的分水房记录"); //GET_RESULT_IN_ONE_MINUTE(10001,"1分钟后去查看结果"), GET_RESULT_ERROR(10002, "获取结果异常"), PLEASE_SELECT_A_VC(10002, "请选择一张虚拟卡"), IN_USE_VC_CANNOT_OPEN_VALVE(10002, "使用中虚拟卡不能用来开阀"), /** * RTU */ RTU_NOT_EXIST(20001, "阀控器不存在"); //RTU_ADDR_CANNOT_BE_NULL(20002, "阀控器地址不能为空"); private final Integer code; private final String message;