|
|
@@ -3,8 +3,6 @@ package com.kym.admin.controller;
|
|
|
import com.kym.common.R;
|
|
|
import com.kym.entity.admin.queryParams.StatQueryParam;
|
|
|
import com.kym.service.miniapp.ChargeOrderService;
|
|
|
-import com.kym.service.utils.KymCache;
|
|
|
-import org.springframework.context.annotation.Lazy;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
import org.springframework.web.bind.annotation.ModelAttribute;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
@@ -21,11 +19,8 @@ public class StatController {
|
|
|
|
|
|
private final ChargeOrderService chargeOrderService;
|
|
|
|
|
|
- private final KymCache kymCache;
|
|
|
-
|
|
|
- public StatController(ChargeOrderService chargeOrderService, @Lazy KymCache kymCache) {
|
|
|
+ public StatController(ChargeOrderService chargeOrderService) {
|
|
|
this.chargeOrderService = chargeOrderService;
|
|
|
- this.kymCache = kymCache;
|
|
|
}
|
|
|
|
|
|
/**
|