liusuyi
2026-05-06 99ab0d46d30b095d0e1c9d31349f42e0cefc9881
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.ard.zlm.api;
 
import com.ard.common.core.constant.SecurityConstants;
import com.ard.common.core.constant.ServiceNameConstants;
import com.ard.common.core.domain.R;
import com.ard.zlm.api.factory.RemoteZlmRecordPlanFallbackFactory;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestHeader;
 
/**
 * ZLM录像计划服务
 *
 * @FileName RemoteZlmRecordPlanService
 * @Description
 * @Author fengcheng
 * @date 2026-04-12
 **/
@FeignClient(contextId = "remoteZlmRecordPlanService", value = ServiceNameConstants.ZLM_SERVICE, fallbackFactory = RemoteZlmRecordPlanFallbackFactory.class)
public interface RemoteZlmRecordPlanService {
 
    /**
     * 录像计划任务
     *
     * @param inner
     */
    @GetMapping("/api/recordPlan/task")
    R<Void> task(@RequestHeader(SecurityConstants.FROM_SOURCE) String inner);
}