package com.qianwen.core.report.endpoint;
|
|
import com.qianwen.core.report.service.IReportFileService;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
import springfox.documentation.annotations.ApiIgnore;
|
|
@RequestMapping({"blade-report/report/rest"})
|
@ApiIgnore
|
@RestController
|
|
public class ReportBootEndpoint extends ReportEndpoint {
|
public ReportBootEndpoint(IReportFileService service) {
|
super(service);
|
}
|
}
|