fanli/src/main/java/com/yeshi/fanli/job/UpdateTaoBaoGoodsJob.java
@@ -136,7 +136,6 @@ */ @Scheduled(cron = "0 15 0/6 * * ? ") public void removeFlashSaleGoods() { if (!Constant.IS_TASK) { return; } @@ -158,6 +157,8 @@ // 更新品牌商品,每天早上6点执行一次 @Scheduled(cron = "0 0 6 * * ? ") public void updateBrandGoods() { if (!Constant.IS_TASK) return; brandClassShopService.updateShopGoods(); } @@ -166,6 +167,8 @@ */ @Scheduled(cron = "0 0 0/1 * * ?") public void update618() { if (!Constant.IS_TASK) return; LogHelper.test("更新618商品"); taoBaoGoodsActivityService.sysncS618Goods(); }