|
@@ -1,11 +1,9 @@
|
|
|
package cn.cslg.report.controller;
|
|
|
|
|
|
import cn.cslg.report.common.core.base.Constants;
|
|
|
-import cn.cslg.report.service.ReportService;
|
|
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
|
|
import lombok.RequiredArgsConstructor;
|
|
|
import org.springframework.context.annotation.Lazy;
|
|
|
-import org.springframework.web.bind.annotation.GetMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
@@ -14,10 +12,4 @@ import org.springframework.web.bind.annotation.RestController;
|
|
|
@RequestMapping(Constants.REPORT_API + "/report")
|
|
|
@RequiredArgsConstructor(onConstructor_ = {@Lazy})
|
|
|
public class ReportController {
|
|
|
- private final ReportService reportService;
|
|
|
-
|
|
|
- @GetMapping( "/test")
|
|
|
- public void test() {
|
|
|
- reportService.testMethod();
|
|
|
- }
|
|
|
}
|