|  |  |  | 
|---|
|  |  |  | import com.doumee.config.annotation.LoginNoRequired; | 
|---|
|  |  |  | import com.doumee.config.jwt.JwtProperties; | 
|---|
|  |  |  | import com.doumee.core.annotation.pr.PreventRepeat; | 
|---|
|  |  |  | import com.doumee.core.haikang.model.HKConstants; | 
|---|
|  |  |  | import com.doumee.core.haikang.model.param.BaseResponse; | 
|---|
|  |  |  | import com.doumee.core.haikang.model.param.request.*; | 
|---|
|  |  |  | import com.doumee.core.haikang.model.param.request.event.acs.EventAcsRequest; | 
|---|
|  |  |  | 
|---|
|  |  |  | String result = hkSyncPushService.dealVisitEvent(param,response); | 
|---|
|  |  |  | return ApiResponse.success(result); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | @ApiOperation("【海康】其他订阅事件订阅推送对接处理接口") | 
|---|
|  |  |  | @PostMapping("/push/notice") | 
|---|
|  |  |  | @LoginNoRequired | 
|---|
|  |  |  | public ApiResponse pushNotice(@RequestBody EventVisitRequest param, HttpServletResponse response){ | 
|---|
|  |  |  | String result = hkSyncPushService.dealVisitEvent(param,response); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | return ApiResponse.success(result); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | @ApiOperation("【海康】访客ICCM事件订阅推送对接处理接口") | 
|---|
|  |  |  | @PostMapping("/push/visitIccm") | 
|---|
|  |  |  | @LoginNoRequired | 
|---|