This commit is contained in:
2023-10-26 23:47:41 +08:00
parent 2a364cfcfe
commit 7aa2212976
4 changed files with 35 additions and 17 deletions

View File

@@ -0,0 +1,25 @@
package top.fatweb.api.controller.permission
import org.springframework.web.bind.annotation.GetMapping
import org.springframework.web.bind.annotation.RequestMapping
import org.springframework.web.bind.annotation.RestController
import top.fatweb.api.service.permission.IUserService
/**
* <p>
* 用户 前端控制器
* </p>
*
* @author FatttSnake
* @since 2023-10-04
*/
@RestController
@RequestMapping("/system/user")
class UserController(
private val userService: IUserService
) {
@GetMapping("info")
fun getInfo() {
}
}