|  |  |  | 
|---|
|  |  |  | @Autowired | 
|---|
|  |  |  | private SystemDictDataBiz systemDictDataBiz; | 
|---|
|  |  |  | @Autowired | 
|---|
|  |  |  | private HkSyncImgServiceImpl hkSyncImgService; | 
|---|
|  |  |  | @Autowired | 
|---|
|  |  |  | private DeviceService deviceService; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiOperation("【海康】测试LED显示屏") | 
|---|
|  |  |  | 
|---|
|  |  |  | public ApiResponse<BaseResponse> testBroadcast(@RequestBody CustomBroadcastRequest request, HttpServletResponse response) { | 
|---|
|  |  |  | return ApiResponse.success(  HKService.customBroadcast(request)); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | @ApiOperation("【海康】测试人脸图片下载") | 
|---|
|  |  |  | @PostMapping("/testDonwLoadMemberImg") | 
|---|
|  |  |  | @LoginNoRequired | 
|---|
|  |  |  | public ApiResponse<BaseResponse> testDonwLoadMemberImg() { | 
|---|
|  |  |  | hkSyncImgService.startDealMemberImg(); | 
|---|
|  |  |  | return ApiResponse.success(  null); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | @ApiOperation("【海康】测试月台事件图片下载") | 
|---|
|  |  |  | @PostMapping("/testDonwLoadPlatformImg") | 
|---|
|  |  |  | @LoginNoRequired | 
|---|
|  |  |  | public ApiResponse<BaseResponse> testDonwLoadPlatformImg() { | 
|---|
|  |  |  | hkSyncImgService.startDealPlatformEventImg(); | 
|---|
|  |  |  | return ApiResponse.success(  null); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | @ApiOperation("【海康】测试获取微信公众号") | 
|---|
|  |  |  | @GetMapping("/testWxToken") | 
|---|
|  |  |  | @LoginNoRequired | 
|---|