SAMS/src/main/java/com/bruce/sams/Controller/UserController.java

19 lines
458 B
Java

package com.bruce.sams.Controller;
import com.bruce.sams.service.SysUserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/user")
public class UserController {
@Autowired
private SysUserService userService;
public Object addUesr(){
return null;
}
}