|
@@ -0,0 +1,28 @@
|
|
|
|
|
+package com.fs.his.task;
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+import com.fs.his.service.IFsIntegralCountService;
|
|
|
|
|
+import com.fs.his.service.IFsUserIntegralLogsService;
|
|
|
|
|
+import lombok.AllArgsConstructor;
|
|
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
+import org.springframework.stereotype.Component;
|
|
|
|
|
+
|
|
|
|
|
+@Slf4j
|
|
|
|
|
+@Component("userIntegralTask")
|
|
|
|
|
+@AllArgsConstructor
|
|
|
|
|
+public class userIntegralTask {
|
|
|
|
|
+
|
|
|
|
|
+ @Autowired
|
|
|
|
|
+ private IFsUserIntegralLogsService integralLogsService;
|
|
|
|
|
+
|
|
|
|
|
+ @Autowired
|
|
|
|
|
+ private IFsIntegralCountService integralCountService;
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 用户积分表 每日消耗统计 除掉看课获取的
|
|
|
|
|
+ */
|
|
|
|
|
+ public void UserIntegralCount(){
|
|
|
|
|
+
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+}
|