mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-08-14 10:11:53 +08:00
修复:启动报错-循环依赖
This commit is contained in:
@@ -27,6 +27,7 @@ import io.swagger.v3.oas.annotations.Operation;
|
||||
import io.swagger.v3.oas.annotations.Parameter;
|
||||
import io.swagger.v3.oas.annotations.Parameters;
|
||||
import io.swagger.v3.oas.annotations.tags.Tag;
|
||||
import org.springframework.context.annotation.Lazy;
|
||||
import org.springframework.validation.annotation.Validated;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
|
||||
@@ -46,18 +47,23 @@ import static cn.iocoder.yudao.framework.security.core.util.SecurityFrameworkUti
|
||||
public class AppBargainRecordController {
|
||||
|
||||
@Resource
|
||||
private BargainHelpService bargainHelpService;
|
||||
@Resource
|
||||
@Lazy
|
||||
private BargainRecordService bargainRecordService;
|
||||
@Resource
|
||||
@Lazy
|
||||
private BargainActivityService bargainActivityService;
|
||||
@Resource
|
||||
private BargainHelpService bargainHelpService;
|
||||
|
||||
|
||||
@Resource
|
||||
private TradeOrderApi tradeOrderApi;
|
||||
@Resource
|
||||
@Lazy
|
||||
private MemberUserApi memberUserApi;
|
||||
@Resource
|
||||
@Lazy
|
||||
private ProductSpuApi productSpuApi;
|
||||
@Resource
|
||||
private TradeOrderApi tradeOrderApi;
|
||||
|
||||
@GetMapping("/get-summary")
|
||||
@Operation(summary = "获得砍价记录的概要信息", description = "用于小程序首页")
|
||||
|
Reference in New Issue
Block a user