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";
| }
| }
|
|