路泰机电科技体检——数据平台后端
赵文轩
2024-06-04 b0da0a48ebac2829218e72ac6c3443be1ab70ec7
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";
    }
}