package com.ruoyi.web.controller.api;
|
|
import io.swagger.annotations.Api;
|
import lombok.RequiredArgsConstructor;
|
import lombok.extern.slf4j.Slf4j;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
/**
|
* @author mitao
|
* @date 2024/4/1
|
*/
|
@Slf4j
|
@RestController
|
@RequestMapping("/history-data")
|
@RequiredArgsConstructor
|
@Api(tags = "历史数据相关接口")
|
public class HistoryDataController {
|
|
}
|