Temp
This commit is contained in:
@@ -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() {
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user