| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- package com.xjrsoft.module.job;
- import com.xjrsoft.common.enums.DeleteMark;
- import com.xjrsoft.common.enums.EnabledMark;
- import com.xjrsoft.module.oa.service.IOfficialDocumentReceivedHandleService;
- import com.xjrsoft.module.student.dto.EnrollmentStatisticsCalendarInfoDto;
- import com.xjrsoft.module.student.dto.EnrollmentStatisticsGraduationInfoDto;
- import com.xjrsoft.module.student.dto.EnrollmentStatisticsInfoDto;
- import com.xjrsoft.module.student.entity.EnrollmentStatisticsInfo;
- import com.xjrsoft.module.student.mapper.EnrollmentStatisticsInfoMapper;
- import com.xjrsoft.module.student.service.IPbCseFeeobjupdateService;
- import com.xjrsoft.module.student.vo.EnrollmentStatisticsCalendarInfoVo;
- import com.xjrsoft.module.student.vo.EnrollmentStatisticsGraduationInfoVo;
- import com.xjrsoft.module.student.vo.EnrollmentStatisticsInfoVo;
- import com.yomahub.liteflow.util.JsonUtil;
- import lombok.extern.slf4j.Slf4j;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.scheduling.annotation.Async;
- import org.springframework.scheduling.annotation.Scheduled;
- import org.springframework.stereotype.Component;
- import java.time.DayOfWeek;
- import java.time.LocalDate;
- import java.time.format.DateTimeFormatter;
- import java.time.temporal.TemporalAdjusters;
- import java.util.Date;
- /**
- * 将招生计划数据固化
- *
- * @author dzx
- * @date 2025年3月17日
- */
- @Component
- @Slf4j
- public class OfficialDocumentReceivedHandleTask {
- @Autowired
- private IOfficialDocumentReceivedHandleService officialDocumentReceivedHandleService;
- @Async
- @Scheduled(cron = "00 0/30 * * * ?")
- public void execute() {
- doExecute();
- }
- void doExecute() {
- }
- }
|