| | |
| | | private AlarmManualClearService service; |
| | | |
| | | @PostMapping("submit") |
| | | public Response addSubmission(@RequestBody AlarmManualClear clear){ |
| | | @ApiOperation("提交告警消除") |
| | | public Response addClearSubmission(@RequestBody AlarmManualClear clear){ |
| | | return service.submit(clear); |
| | | } |
| | | |
| | | @ApiOperation(value = "查询具体告警消除记录",notes = "必传 alarmType,battGroupId/deviceId/powerDeviceId,alm_start_time,alm_id,alm_signal_id(如果有这个属性)") |
| | | @ApiOperation(value = "查询具体告警消除记录",notes = "必传 alarmType,[battGroupId,mon_num,alm_signal_id]/[deviceId]/[powerDeviceId],alm_start_time,alm_id") |
| | | @PostMapping("getRecordByAlarmInfo") |
| | | public Response getRecordByAlarmInfo(@RequestBody AlarmManualClear clear){ |
| | | return service.getRecordByAlarmInfo(clear); |