package com.ruoyi.web.controller.api;
|
|
|
import com.ruoyi.system.service.TFoundationConfigService;
|
import io.swagger.annotations.Api;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
/**
|
* <p>
|
* 基础设置 前端控制器
|
* </p>
|
*
|
* @author xiaochen
|
* @since 2024-08-14
|
*/
|
@Api(tags = "基础设置")
|
@RestController
|
@RequestMapping("/t-foundation-config")
|
public class TFoundationConfigController {
|
|
private final TFoundationConfigService foundationConfigService;
|
|
@Autowired
|
public TFoundationConfigController(TFoundationConfigService foundationConfigService) {
|
this.foundationConfigService = foundationConfigService;
|
}
|
}
|