|  |  | 
 |  |  | import com.doumee.core.haikang.model.param.request.*; | 
 |  |  | import com.doumee.core.haikang.model.param.request.event.acs.EventAcsRequest; | 
 |  |  | import com.doumee.core.haikang.model.param.request.event.parks.EventParkRequest; | 
 |  |  | import com.doumee.core.haikang.model.param.request.event.parks.EventPlatCarstatusRequest; | 
 |  |  | import com.doumee.core.haikang.model.param.request.event.parks.EventPlatWorkstatusRequest; | 
 |  |  | import com.doumee.core.haikang.model.param.request.event.parks.EventPlatformCarsRequest; | 
 |  |  | import com.doumee.core.haikang.model.param.request.event.parks.EventPlatformRequest; | 
 |  |  | import com.doumee.core.haikang.model.param.request.event.visit.EventVisitRequest; | 
 |  |  | import com.doumee.core.model.ApiResponse; | 
 |  |  | import com.doumee.service.business.third.model.ApiResponse; | 
 |  |  | import com.doumee.dao.business.model.Device; | 
 |  |  | import com.doumee.service.business.impl.hksync.*; | 
 |  |  | import io.swagger.annotations.Api; | 
 |  |  | 
 |  |  |         return ApiResponse.success(null); | 
 |  |  |     } | 
 |  |  |     @ApiOperation("【海康】月台工作状态事件推送") | 
 |  |  |     @PostMapping("/platform/workstatus") | 
 |  |  |     public ApiResponse workstatus(@RequestBody EventPlatWorkstatusRequest param, HttpServletResponse response) { | 
 |  |  |          hkSyncPushService.dealWorkstatusEvent(param,response); | 
 |  |  |     @PostMapping("/push/platform/workstatus") | 
 |  |  |     public ApiResponse pushPlatformStatus(@RequestBody EventPlatformRequest param, HttpServletResponse response) { | 
 |  |  |          hkSyncPushService.dealPlatformStatusEvent(param,response); | 
 |  |  |         return ApiResponse.success(null); | 
 |  |  |     } | 
 |  |  |     @ApiOperation("【海康】月台车辆状态事件推送") | 
 |  |  |     @PostMapping("/platform/carstatus") | 
 |  |  |     public ApiResponse carstatus(@RequestBody EventPlatCarstatusRequest param, HttpServletResponse response) { | 
 |  |  |          hkSyncPushService.dealCarstatusEvent(param,response); | 
 |  |  |     @PostMapping("/push/platform/carstatus") | 
 |  |  |     public ApiResponse pushPlatformCarStatus(@RequestBody EventPlatformCarsRequest param, HttpServletResponse response) { | 
 |  |  |          hkSyncPushService.dealPlatformCarsEvent(param,response); | 
 |  |  |         return ApiResponse.success(null); | 
 |  |  |     } | 
 |  |  | } |