whycxzp
2024-08-01 8814d819464c862dbf6657fd01fea3dcd1422dd7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.whyc.controller;
 
import com.whyc.service.ReportService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
/**
 * 报告生成
 */
@RestController
@RequestMapping("report")
public class ReportController {
 
    @Autowired
    private ReportService service;
 
}