路泰机电科技体检——数据平台后端
zhaowenxuan
2024-06-03 972bf0eac06314ff10876dba7766c369ebf6ab7e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.example.controller;
 
import com.example.utils.DictionaryUtil;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
 
/**
 * @Company: 西安路泰科技有限公司
 * @Author: zhaowenxuan
 * @Date: 2024/6/3 15:25
 */
@RestController
public class TestController {
    @GetMapping("test")
    public String test(){
        DictionaryUtil util = new DictionaryUtil();
        util.exec1();
        return "123";
    }
}