|
@@ -29,12 +29,21 @@ import org.springframework.transaction.annotation.Transactional;
|
|
|
* @date 2025-03-08
|
|
|
*/
|
|
|
@Slf4j
|
|
|
-@Service
|
|
|
+@Service("fsCouponScheduleService")
|
|
|
@RequiredArgsConstructor
|
|
|
public class FsCouponScheduleServiceImpl implements IFsCouponScheduleService
|
|
|
{
|
|
|
+ /**
|
|
|
+ * 优惠券定时任务
|
|
|
+ */
|
|
|
private final FsCouponScheduleMapper fsCouponScheduleMapper;
|
|
|
+ /**
|
|
|
+ * 优惠券领取Service接口
|
|
|
+ */
|
|
|
private final IFsStoreCouponIssueService fsStoreCouponIssueService;
|
|
|
+ /**
|
|
|
+ * 优惠券发放计划日志表Mapper接口
|
|
|
+ */
|
|
|
private final FsCouponScheduleLogMapper fsCouponScheduleLogMapper;
|
|
|
/**
|
|
|
* 查询定时发放优惠券队列
|