xuhy
2024-08-15 98e7dc8c77c30a6cad499a4a12b5334da1fe16d7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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;
    }
}