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(); }