|
|
@@ -23,9 +23,9 @@ public interface AlarmDataSyncTaskService {
|
|
|
* @param status peacetime:平时 wartime:战时
|
|
|
*/
|
|
|
@GetMapping("/synchronizeAlarmData")
|
|
|
- void synchronizeAlarmData(@RequestParam Integer tenantId,
|
|
|
- @RequestParam Long engineeringId,
|
|
|
- @RequestParam String username,
|
|
|
- @RequestParam String password,
|
|
|
- @RequestParam String status);
|
|
|
+ void synchronizeAlarmData(@RequestParam(value = "tenantId") Integer tenantId,
|
|
|
+ @RequestParam(value = "engineeringId") Long engineeringId,
|
|
|
+ @RequestParam(value = "username") String username,
|
|
|
+ @RequestParam(value = "password") String password,
|
|
|
+ @RequestParam(value = "status") String status);
|
|
|
}
|