|
@@ -0,0 +1,19 @@
|
|
|
+package com.yonge.cooleshow.task.jobs;
|
|
|
+
|
|
|
+import com.yonge.cooleshow.api.feign.AdminFeignService;
|
|
|
+import com.yonge.cooleshow.task.core.BaseTask;
|
|
|
+import com.yonge.cooleshow.task.core.TaskException;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+
|
|
|
+@Service
|
|
|
+public class ActivityIngTask extends BaseTask {
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private AdminFeignService adminFeignService;
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void execute() throws TaskException {
|
|
|
+ Object o = adminFeignService.activityIng();
|
|
|
+ }
|
|
|
+}
|