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;
|
|
}
|