|
@@ -14,6 +14,7 @@ import com.style24.batch.biz.job.customer.TsbPrivacyPolicyNoticeJob;
|
|
|
import com.style24.batch.biz.job.customer.TsbSecedeProcessJob;
|
|
import com.style24.batch.biz.job.customer.TsbSecedeProcessJob;
|
|
|
import com.style24.batch.biz.job.marketing.TsbAutoBuyConfirmJob;
|
|
import com.style24.batch.biz.job.marketing.TsbAutoBuyConfirmJob;
|
|
|
import com.style24.batch.biz.job.marketing.TsbBirthdayCouponNoticeJob;
|
|
import com.style24.batch.biz.job.marketing.TsbBirthdayCouponNoticeJob;
|
|
|
|
|
+import com.style24.batch.biz.job.marketing.TsbExpectGiftcardJob;
|
|
|
import com.style24.batch.biz.job.marketing.TsbExpireGiftcardJob;
|
|
import com.style24.batch.biz.job.marketing.TsbExpireGiftcardJob;
|
|
|
import com.style24.batch.biz.job.marketing.TsbExpirePointJob;
|
|
import com.style24.batch.biz.job.marketing.TsbExpirePointJob;
|
|
|
import com.style24.batch.biz.job.marketing.TsbReviewGuideJob;
|
|
import com.style24.batch.biz.job.marketing.TsbReviewGuideJob;
|
|
@@ -61,6 +62,9 @@ public class TsbCustomerTask {
|
|
|
|
|
|
|
|
@Autowired
|
|
@Autowired
|
|
|
private TsbExpireGiftcardJob expireGiftcardJob;
|
|
private TsbExpireGiftcardJob expireGiftcardJob;
|
|
|
|
|
+
|
|
|
|
|
+ @Autowired
|
|
|
|
|
+ private TsbExpectGiftcardJob expectGiftcardJob;
|
|
|
|
|
|
|
|
@Autowired
|
|
@Autowired
|
|
|
private TsbReviewGuideJob reviewGuideJob;
|
|
private TsbReviewGuideJob reviewGuideJob;
|
|
@@ -206,6 +210,20 @@ public class TsbCustomerTask {
|
|
|
public void giftcardExpireJob() throws Exception {
|
|
public void giftcardExpireJob() throws Exception {
|
|
|
expireGiftcardJob.runById("cron.customer.giftcard.expire");
|
|
expireGiftcardJob.runById("cron.customer.giftcard.expire");
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 상품권 기간만료 알림톡(30일)
|
|
|
|
|
+ *
|
|
|
|
|
+ * @throws Exception - 예외처리
|
|
|
|
|
+ * @author sowon
|
|
|
|
|
+ * @since 2021. 05. 27
|
|
|
|
|
+ */
|
|
|
|
|
+ //@Scheduled(cron = "${cron.customer.giftcard.expect}")
|
|
|
|
|
+ //@Async
|
|
|
|
|
+ //@Scheduled(fixedDelay=3500000)
|
|
|
|
|
+ public void giftcardExpectJob() throws Exception {
|
|
|
|
|
+ expectGiftcardJob.runById("cron.customer.giftcard.expect");
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 상품평등록안내발송 처리
|
|
* 상품평등록안내발송 처리
|