1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.matrix.system.api.action;
|
| import io.swagger.annotations.Api;
| import org.springframework.web.bind.annotation.RequestMapping;
| import org.springframework.web.bind.annotation.RestController;
|
| /**
| * @author wzy
| * @date 2020-12-21
| **/
| @Api(value = "UsersAction", tags = "用户中心接口类")
| @RestController
| @RequestMapping(value = "/api/user")
| public class UsersAction {
|
|
|
|
| }
|
|