nidapeng
2024-04-29 978d819b2faf016983a1670a2297700fa2205da8
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
30
31
package com.doumee.jobs.visits;
 
import com.doumee.core.model.ApiResponse;
import io.swagger.annotations.ApiOperation;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.stereotype.Component;
import org.springframework.web.bind.annotation.GetMapping;
 
/**
 * @author 公众号:知了一笑
 * @since 2023-07-26 11:44
 */
@Component("visitEmpowerJob")
@FeignClient(value = "visitsTimer")
public interface EmpowerFegin   {
 
    @ApiOperation("开启定时查询人员设备授权结果")
    @GetMapping("/timer/empower/syncEmpowerDetailData")
    public ApiResponse syncEmpowerDetailData();
    @ApiOperation("开启定时查询人员设备授权下载进度")
    @GetMapping("/timer/empower/syncEmpowerResultData")
    public ApiResponse syncEmpowerResultData() ;
 
    @ApiOperation("开启定时重新下发失败的授权数据")
    @GetMapping("/timer/empower/syncEmpowerFailData")
    public ApiResponse syncEmpowerFailData();
 
    @ApiOperation("开启定时刷新人员设备授权")
    @GetMapping("/timer/empower/syncEmpowerData")
    public ApiResponse syncEmpowerData();
}