Commit 465dee8e by huluobin

update

parent e441d806
......@@ -34,6 +34,7 @@ import com.google.common.collect.Lists;
import lombok.Data;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Lazy;
import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
......@@ -50,29 +51,54 @@ import java.util.stream.Collectors;
public class MarketServiceImpl implements MarketService {
@Resource
@Lazy
TimesCardOrderServeDetailMapper timesCardOrderServeDetailMapper;
@Resource
@Lazy
private CouponMapper couponMapper;
@Autowired
@Lazy
private CouponCustomerRelevanceService couponCustomerRelevanceService;
@Resource
@Lazy
private CouponOrderRelevanceService couponOrderRelevanceService;
@Resource
@Lazy
private OrderManageMapper orderManageMapper;
@Lazy
@Resource
private OrderServeMapper orderServeMapper;
@Lazy
@Resource
private TimesCardCustomerRelevanceMapper timesCardCustomerRelevanceMapper;
@Lazy
@Resource
private CouponCustomerRelevanceMapper couponCustomerRelevanceMapper;
@Lazy
@Resource
private OrderServeService orderServeService;
@Lazy
@Resource
private TimesCardUsedRecordService timesCardUsedRecordService;
@Lazy
@Resource
private TimesCardCustomerRelevanceService timesCardCustomerRelevanceService;
@Lazy
@Resource
private DiscountConfigMapper discountConfigMapper;
@Lazy
@Resource
ICouponOrderService couponOrderService;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment