|
@@ -38,6 +38,7 @@ import com.fs.core.config.WxMaConfiguration;
|
|
|
import com.fs.core.config.WxPayProperties;
|
|
|
import com.fs.core.utils.OrderCodeUtils;
|
|
|
import com.fs.course.config.RedPacketConfig;
|
|
|
+import com.fs.course.domain.FsCourseRedPacketLog;
|
|
|
import com.fs.course.service.IFsCourseRedPacketLogService;
|
|
|
import com.fs.course.service.IFsUserCourseOrderService;
|
|
|
import com.fs.course.service.IFsUserVipOrderService;
|
|
@@ -1471,6 +1472,14 @@ public class FsStorePaymentServiceImpl implements IFsStorePaymentService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public void updateRedlogStatus() {
|
|
|
+ int status = 2;
|
|
|
+ List<FsCourseRedPacketLog> redPacketLogs = redPacketLogService.selectRedlogStatus(status);
|
|
|
+ for (FsCourseRedPacketLog redPacketLog : redPacketLogs) {
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
|
|
|
@Override
|