|
@@ -78,6 +78,21 @@ public class AlarmClientFallbackFactory implements FallbackFactory<AlarmClient>
|
|
|
public DmpResult<JSONArray> queryAlarmComment(AlarmUrlParam alarmUrlParam, JSONObject jsonObject){
|
|
|
throw new RuntimeException(String.format(errorMsg, "queryAlarmComment", jsonObject.toString()));
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public DmpResult<JSONObject> batchUpdateAlarmRecord(AlarmUrlParam alarmUrlParam, JSONObject jsonObject) {
|
|
|
+ throw new RuntimeException(String.format(errorMsg, "batchUpdateAlarmRecord", jsonObject.toString()));
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public DmpResult<JSONObject> deleteAlarmConfig(AlarmUrlParam alarmUrlParam, JSONObject jsonObject) {
|
|
|
+ throw new RuntimeException(String.format(errorMsg, "deleteAlarmConfig", jsonObject.toString()));
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public DmpResult<JSONObject> batchDeleteAlarmConfig(AlarmUrlParam alarmUrlParam, JSONObject jsonObject) {
|
|
|
+ throw new RuntimeException(String.format(errorMsg, "batchDeleteAlarmConfig", jsonObject.toString()));
|
|
|
+ }
|
|
|
};
|
|
|
}
|
|
|
}
|