yangys
2024-03-29 e7aaa62a5c499747275a78ed6157024f15b9ab1e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
/* loaded from: blade-starter-report-9.3.0.0-SNAPSHOT.jar:org/springblade/core/report/endpoint/ReportBootEndpoint.class */
public class ReportBootEndpoint extends ReportEndpoint {
    public ReportBootEndpoint(IReportFileService service) {
        super(service);
    }
}