zouyu
2025-03-01 e7a77fffb72595958d245598c4abe87c6b4b84b6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.ruoyi.web.controller.system;
 
 
import com.ruoyi.system.service.UserService;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
import javax.annotation.Resource;
 
 
/**
 * 用户信息表
 *
 * @author zhuo
 * @since 2025-02-13
 */
@RestController
@RequestMapping("/system/newUser")
public class UserController {
 
    @Resource
    private UserService userService;
 
}