定时任务

@Api(value = "定时任务执行", tags = "定时任务执行")
@Slf4j
@Component
@EnableScheduling
public class ScheduledController {

//@Scheduled(fixedRate = 60000)//每隔一分钟执行一次
//每天早上9点-晚上21点间执行,每次执行间隔一分钟
@Scheduled(cron = "0 0/1 9-21 * * ?")
@PostMapping("/updateTeaseStatics")
@ApiOperation(value = "定时任务更新或手动更新")
public void updateTeaseStatics() {
scheduledService.DingDingDeptAndUser();
}
}
posted @ 2022-06-10 14:01  全琪俊  阅读(32)  评论(0编辑  收藏  举报