|
@@ -44,7 +44,7 @@ public class CompetitionTask {
|
|
|
* 输出基金净值采集结果明细任务
|
|
|
* 每天10:00,15:00执行任务
|
|
|
*/
|
|
|
- @Scheduled(cron = "0/10 * * * * ?")
|
|
|
+ // @Scheduled(cron = "0/10 * * * * ?")
|
|
|
public void fundNavDataTask() {
|
|
|
List<FundNavDataDTO> navDataDTOList = fundNavService.getFungNavData(competitionConfig.getId());
|
|
|
if (CollUtil.isEmpty(navDataDTOList)) {
|
|
@@ -79,7 +79,7 @@ public class CompetitionTask {
|
|
|
* 输出基金净值缺失明细任务
|
|
|
* 每天10:00,15:00执行任务
|
|
|
*/
|
|
|
- @Scheduled(cron = "0 0 10,15 * * ?")
|
|
|
+ // @Scheduled(cron = "0 0 10,15 * * ?")
|
|
|
public void navDeletionTask() {
|
|
|
List<FundNavDeletionDTO> navDeletionDTOList = fundNavService.getFundNavDeletion(competitionConfig.getId());
|
|
|
if (CollUtil.isEmpty(navDeletionDTOList)) {
|
|
@@ -107,7 +107,7 @@ public class CompetitionTask {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- @Scheduled(cron = "0 0 10,15 * * ?")
|
|
|
+ // @Scheduled(cron = "0 0 10,15 * * ?")
|
|
|
public void competitionResultTask() {
|
|
|
List<? extends CompetitionBaseResultDTO> competitionResultDTOList = fundNavService.getCompetitionResult(competitionConfig.getId());
|
|
|
if (CollUtil.isEmpty(competitionResultDTOList)) {
|