1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.ycl.controller.cockpitManage;
|
|
| import org.springframework.web.bind.annotation.RequestMapping;
|
| import org.springframework.web.bind.annotation.RestController;
| import com.ycl.base.BaseController;
|
| /**
| * <p>
| * 队伍建设表 前端控制器
| * </p>
| *
| * @author zhanghua
| * @since 2022-10-31
| */
| @RestController
| @RequestMapping("/team-construction")
| public class TeamConstructionController extends BaseController {
|
| }
|
|